-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "q-ching",
"version": "0.1.0",
"private": true,
"description": "An I-Ching oracle cast from quantum randomness and the motion of your own hand.",
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"experiments/*"
],
"scripts": {
"build:core": "npm run build --workspace @q-ching/core",
"test:core": "npm run test --workspace @q-ching/core",
"dev:web": "npm run dev --workspace @q-ching/web",
"build:web": "npm run build --workspace @q-ching/web",
"tui": "npm run start --workspace @q-ching/tui",
"mcp": "npm run start --workspace @q-ching/mcp",
"build:mcp": "npm run build --workspace @q-ching/mcp",
"experiment": "npm run start --workspace @q-ching/exp-oracle-guided",
"experiment:openai": "npm run start --workspace @q-ching/exp-oracle-guided-openai",
"build": "npm run build:core && npm run build:web && npm run build --workspace @q-ching/tui && npm run build:mcp",
"prepare": "git config core.hooksPath .githooks || true",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"engines": {
"node": ">=20"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.62.2"
},
"devDependencies": {
"@changesets/cli": "^2.31.1"
}
}