-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.31 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.31 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
{
"name": "gengine-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "npx playwright install --with-deps chromium",
"serve-demo": "http-server web",
"build": "echo 'no-op build'",
"validate-story": "node scripts/validate-story.js --glob \"web/stories/**/*.ink\" --output json --max-steps 2000",
"test": "npm run test:unit && npm run test:demo",
"test:unit": "jest",
"test:demo": "node scripts/run-demo-tests.js",
"test:replay": "jest tests/replay/replay.spec.js",
"lint:md": "remark .opencode/command/*.md --quiet --frail",
"test:golden": "node tests/golden-path/run-golden.js",
"dev:cors-proxy": "node scripts/cors-proxy.js",
"dev:demo": "node scripts/dev-runner.js",
"test:integration:embedding": "EMBED_NODE=1 npx jest --runInBand --config jest.config.js --testMatch \"<rootDir>/tests/integration/**/*.test.[jt]s\" --passWithNoTests"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@xenova/transformers": "^2.15.0",
"fast-glob": "^3.3.3",
"http-server": "^14.1.1",
"inkjs": "^2.3.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"npm-run-all": "^4.1.5",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.1",
"remark-preset-lint-recommended": "^5.0.0",
"start-server-and-test": "^2.0.0"
}
}