-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 4.22 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 4.22 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
{
"name": "acryl",
"version": "0.1.36",
"private": true,
"description": "ACRYL local-first plugin-native agent workspace",
"license": "MIT",
"packageManager": "pnpm@11.8.0",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.8.0",
"onFail": "warn"
}
},
"scripts": {
"build": "pnpm --filter acryl-control run build && pnpm --filter acryl-cli run build && pnpm --filter acryl-web run build && pnpm --filter dsh-community-market run build && pnpm --filter acryl-development-canvas run build && pnpm --filter acryl-desktop run build",
"typecheck": "pnpm --filter acryl-control run typecheck && pnpm --filter acryl-cli run typecheck && pnpm --filter acryl-web run typecheck && pnpm --filter acryl-development-canvas run typecheck && pnpm --filter acryl-desktop run typecheck && pnpm --filter dsh-community-market run typecheck",
"test": "pnpm --filter acryl-control run test && pnpm --filter acryl-cli run test && pnpm --filter acryl-web run test && pnpm --filter acryl-development-canvas run test && pnpm --filter acryl-desktop run test && pnpm --filter dsh-community-market run test",
"verify": "pnpm run typecheck && pnpm run test && node --test scripts/dev-local.test.mjs",
"dev:local": "node scripts/dev-local.mjs",
"start:local": "node scripts/dev-local.mjs --skip-build",
"local": "node scripts/dev-local.mjs",
"lifecycle": "pnpm run verify && node scripts/dev-local.mjs",
"test:bilingual-docs": "node --test scripts/bilingual-docs.test.mjs",
"check:bilingual-docs": "pnpm run test:bilingual-docs && node scripts/verify-bilingual-docs.mjs",
"test:architecture-gates": "node --test scripts/market-dependency-direction.test.mjs",
"check:architecture": "pnpm run test:architecture-gates && node scripts/verify-market-dependency-direction.mjs",
"check:layout": "pnpm run check:bilingual-docs && pnpm run check:architecture && node scripts/verify-layout.mjs",
"check": "pnpm run check:layout && pnpm run debt:check && pnpm --filter acryl-control run check && pnpm --filter acryl-cli run check && pnpm --filter acryl-web run check && pnpm --filter dsh-community-fabric run check && pnpm --filter dsh-community-market run check && pnpm --filter acryl-development-canvas run check && pnpm --filter acryl-desktop run check",
"dev": "node scripts/dev-local.mjs",
"dev:shared": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run dev",
"start": "pnpm --filter acryl-desktop run start",
"package:dir": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run package:dir",
"dist:mac": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run dist:mac",
"dist:mac-smoke": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run dist:mac-smoke",
"dist:win": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run dist:win",
"dist:win-portable": "pnpm --filter dsh-community-market run build && pnpm --filter acryl-desktop run dist:win-portable",
"upstream:sync": "git submodule update --init --recursive",
"upstream:update": "node scripts/update-upstream.mjs",
"upstream:version": "cd deepseek-harness && corepack pnpm --version",
"upstream:install": "cd deepseek-harness && corepack pnpm install --frozen-lockfile",
"upstream:build": "cd deepseek-harness && corepack pnpm run build",
"tui": "node acryl-cli/bin/dev-run.mjs",
"tui:resume": "node acryl-cli/bin/dev-run.mjs --resume",
"acryl": "node acryl-cli/bin/dev-run.mjs",
"acryl:resume": "node acryl-cli/bin/dev-run.mjs --resume",
"tui:rebuild": "node scripts/rebuild-tui-clean.mjs",
"tui:fresh": "node scripts/rebuild-tui-clean.mjs && node acryl-cli/bin/dev-run.mjs",
"acryl-gui": "pnpm --filter acryl-desktop run start",
"acryl-desktop": "pnpm --filter acryl-desktop run start",
"acryl-web": "node acryl-web/bin/dev-run.mjs",
"web": "node acryl-web/bin/dev-run.mjs",
"debt:check": "node specs/001-acryl-refactor-improvements-and-tech-debt/proof/architecture-guardrails.mjs",
"gui": "node scripts/dev-local.mjs"
},
"devDependencies": {
"@types/react": "18.3.31"
}
}