-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "spanda",
"version": "0.5.0",
"description": "Autonomous Systems Platform with a safety-first language at its core — the pulse of autonomous intelligence",
"repository": {
"type": "git",
"url": "git+https://github.com/Davalgi/Spanda.git"
},
"homepage": "https://github.com/Davalgi/Spanda#readme",
"bugs": {
"url": "https://github.com/Davalgi/Spanda/issues"
},
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"spanda": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"build:rust": "bash scripts/build-rust.sh",
"build:wasm": "bash scripts/build-wasm.sh",
"test": "vitest run",
"test:rust": "cargo test --workspace",
"test:watch": "vitest",
"spanda": "node --import tsx src/cli/index.ts",
"spanda:native": "cargo run -p spanda --",
"web:dev": "npm run dev --workspace=@davalgi-spanda/web",
"web:build": "npm run build --workspace=@davalgi-spanda/web",
"control-center:desktop:dev": "npm run dev --workspace=@spanda/control-center-desktop",
"control-center:desktop:check": "npm run check --workspace=@spanda/control-center-desktop"
},
"dependencies": {
"@davalgi-spanda/sdk": "^0.5.5",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.6.1",
"mqtt": "^5.10.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=18"
},
"overrides": {
"vite": "^6.4.3"
},
"allowScripts": {
"esbuild": true,
"fsevents": true
}
}