-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "story-engine-ng",
"version": "0.1.0",
"private": true,
"description": "StoryEngine-NG: a lightweight state-first long-form interactive narrative engine.",
"keywords": [
"story-engine",
"interactive-fiction",
"ai-writing",
"narrative-state",
"longform-writing"
],
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/OrderG-X/StoryEngine"
},
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "pnpm --filter @actalk/story-engine build && pnpm --filter @actalk/story-engine-ui dev",
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"story-engine:test": "pnpm --filter @actalk/story-engine test",
"story-engine:typecheck": "pnpm --filter @actalk/story-engine typecheck",
"story-engine-cli:test": "pnpm --filter @actalk/story-engine-cli test",
"story-engine-cli:typecheck": "pnpm --filter @actalk/story-engine-cli typecheck"
},
"engines": {
"node": "^20.20.0 || ^22.22.0 || >=24.0.0",
"pnpm": ">=11.0.0"
}
}