-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.89 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
{
"name": "conshell",
"version": "0.1.0",
"description": "ConShell — Sovereign AI Agent Runtime with Conway Automaton, x402 payments, and multi-provider inference",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "packages/app/dist/index.js",
"bin": {
"conshell": "packages/app/dist/index.js"
},
"files": [
"packages/*/dist/**",
"packages/app/CONSTITUTION.md",
"packages/app/SOUL.md",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm -r --filter '!@conshell/dashboard' run build && pnpm --filter @conshell/dashboard run build",
"build:backend": "pnpm -r --filter '!@conshell/dashboard' run build",
"build:all": "pnpm run build && pnpm run build:dashboard",
"dev:dashboard": "pnpm --filter @conshell/dashboard run dev",
"conshell": "node packages/app/dist/index.js",
"start": "pnpm run build:all && node packages/app/dist/index.js start",
"test": "pnpm -r run test",
"test:watch": "pnpm -r run test:watch",
"lint": "eslint 'packages/*/src/**/*.ts'",
"lint:fix": "eslint 'packages/*/src/**/*.ts' --fix",
"format": "prettier --write 'packages/*/src/**/*.ts'",
"format:check": "prettier --check 'packages/*/src/**/*.ts'",
"clean": "pnpm -r run clean && rm -rf node_modules",
"typecheck": "pnpm -r run typecheck",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}