-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ai-system-6",
"version": "1.0.52",
"description": "A local-first, model-agnostic AI desktop inspired by Macintosh System 6.",
"private": true,
"license": "MIT",
"homepage": "https://aisystem6.pages.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/surfine/AI-System-6.git"
},
"bugs": {
"url": "https://github.com/surfine/AI-System-6/issues"
},
"engines": {
"node": ">=24"
},
"main": "apps/server/server.js",
"scripts": {
"build": "npm run build:app",
"build:app": "node tooling/build-app-bundle.mjs",
"build:cmf-renderer-vendor": "node tooling/build-cmf-renderer-vendor.mjs",
"build:image-prompt-studio-era-icons": "node tooling/build-image-prompt-studio-era-icons.mjs",
"build:lightroom-era-icons": "node tooling/build-lightroom-era-icons.mjs",
"build:micropolis-hd": "node tooling/build-micropolis-hd-assets.mjs",
"build:stream-markdown-vendor": "node tooling/build-stream-markdown-vendor.mjs",
"docs:sync-hashes": "node tooling/update-doc-locale-hashes.mjs",
"lint": "eslint apps/server/server tests/integration",
"perf:budget": "node tooling/verify-floppy-budget.mjs",
"prebuild:app": "npm run build:stream-markdown-vendor && npm run build:cmf-renderer-vendor",
"prestart": "npm run build:app",
"site:capture-frames": "node tooling/capture-site-frames.mjs",
"site:capture-route": "node tooling/capture-site-route.mjs",
"site:check": "node tooling/verify-site.mjs",
"site:render-og": "node tooling/render-og-poster.mjs",
"site:sync": "node tooling/sync-site-assets.mjs",
"start": "node apps/server/server.js",
"test": "npm run verify:features",
"test:e2e": "playwright test --config tests/e2e/playwright.config.mjs",
"test:e2e:smoke": "playwright test smoke.spec.mjs --config tests/e2e/playwright.config.mjs",
"test:integration": "node tooling/run-node-tests.mjs tests/integration",
"test:unit": "node tooling/run-node-tests.mjs tests/features/credential-boundary.test.mjs tests/features/shared-cloud-budget.test.mjs tests/features/shared-cloud-settlement.test.mjs tests/features/single-writer-lease.test.mjs tests/features/single-writer-race.test.mjs tests/features/takeover-handshake.test.mjs tests/features/cmf-worker-scheduler.test.mjs tests/features/public-rate-limit-proxy.test.mjs",
"verify:checkjs": "node tooling/verify-frontend-jsdoc.mjs",
"verify:contracts": "npm run verify:features",
"verify:css": "node tooling/verify-css.mjs",
"verify:data": "node tooling/verify-data-boundary.mjs",
"verify:design": "node tooling/verify-design.mjs",
"verify:docs": "node tooling/verify-doc-locales.mjs",
"verify:feature": "node tooling/verify-features.mjs",
"verify:features": "node tooling/verify-features.mjs",
"verify:floppy": "node tooling/verify-floppy-budget.mjs",
"verify:public": "npm run verify:public-tree",
"verify:public-tree": "node tooling/verify-public-tree.mjs",
"verify:quick": "node tooling/verify-quick.mjs",
"verify:src": "npm --prefix apps/server run typecheck",
"verify:theme-icons": "node tooling/build-theme-icon-css.mjs --check",
"verify:version": "node tooling/verify-version-consistency.mjs"
},
"overrides": {
"sanitize-html": "2.17.5"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"acorn": "^8.18.0",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"three": "^0.185.1",
"typescript": "^7.0.2",
"wrangler": "^4.126.0"
},
"dependencies": {
"@extractus/article-extractor": "^9.0.0",
"@lmstudio/sdk": "^1.5.0",
"@paddlejs-models/ocr": "^1.2.4",
"canvas": "^3.2.3",
"https-proxy-agent": "^9.1.0",
"pdfjs-dist": "^6.2.108",
"stream-markdown-parser": "^1.2.6",
"tesseract.js": "^7.0.0"
}
}