-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.88 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
{
"name": "1667-workspace",
"version": "0.11.0-beta.5",
"private": true,
"description": "Source workspace for the 1667 terminal writing environment",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "npm run schema:check && npm run notes:check && tsc --noEmit",
"import": "tsx server/import-cli.ts",
"migrate-data": "tsx server/migrate-data-cli.ts",
"release:pack": "node --import tsx scripts/release-pack.ts",
"release:publish": "node --import tsx scripts/release-npm-publish.ts",
"release:stage": "node --import tsx scripts/release-stage-packages.ts",
"release:verify-install-upgrade": "node --import tsx scripts/release-install-upgrade-e2e.ts",
"test": "node --import tsx --import ./test/setup.ts --test test/*.test.ts",
"typecheck": "npm run schema:check && npm run notes:check && tsc --noEmit",
"schema:check": "tsx scripts/story-schema.ts --check && tsx scripts/mutation-ledger-schema.ts --check && tsx scripts/settings-v2-schema.ts --check && tsx scripts/settings-v4-schema.ts --check && tsx scripts/settings-v5-schema.ts --check",
"schema:write": "tsx scripts/story-schema.ts --write && tsx scripts/mutation-ledger-schema.ts --write && tsx scripts/settings-v2-schema.ts --write && tsx scripts/settings-v4-schema.ts --write && tsx scripts/settings-v5-schema.ts --write",
"notes:check": "tsx scripts/release-notes.ts --check",
"notes:write": "tsx scripts/release-notes.ts --write",
"notes:check-version": "tsx scripts/release-notes.ts --check-version",
"prompt:check": "tsx scripts/check-prompt-compatibility.ts"
},
"dependencies": {
"@earendil-works/pi-ai": "0.84.2",
"@silvia-odwyer/photon-node": "0.3.4",
"koffi": "3.1.2",
"msgpackr": "2.0.5",
"tiktoken": "1.0.22"
},
"devDependencies": {
"@types/node": "^24.0.0",
"ajv": "^8.20.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}