-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.5 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
{
"name": "punk-rock-ai",
"version": "0.1.0",
"private": true,
"description": "Interactive learning portal for the Punk Rock AI / Both Hands Full keynote.",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "npx --yes serve site -l 3000",
"check": "npm run eval && npm run docs:links:all && npm run test:index-hygiene && npm run test:agentic && npm run check:python && npm audit --audit-level=moderate",
"eval": "node scripts/eval.mjs",
"seo:index-hygiene": "node scripts/check-index-hygiene.mjs",
"docs:links": "node scripts/check-doc-links.mjs --maintained",
"docs:links:all": "node scripts/check-doc-links.mjs --all",
"test:index-hygiene": "node --test tests/index-hygiene.test.mjs",
"test:agentic": "python3 -m pytest tests/agentic",
"check:python": "python3 -m compileall -q scripts/agentic dress-rehearsal tests/agentic",
"smoke:release-day": "node scripts/smoke-release-day.mjs",
"smoke:subscribe": "node scripts/smoke-subscribe.mjs",
"build:quotes": "node scripts/build-quotes.mjs",
"build:lineage": "node scripts/build-lineage.mjs",
"build:library": "node scripts/build-library-index.mjs",
"build:audio": "node scripts/build-audio-cues.mjs",
"generate:cues": "node scripts/generate-cues.mjs",
"build:decisions": "node scripts/build-decisions.mjs",
"ingest:slides": "node scripts/ingest-slides.mjs"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"serve": "^14.2.4",
"sharp": "^0.33.5"
}
}