-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 3.17 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
{
"name": "shift-monorepo",
"version": "0.0.1",
"private": true,
"description": "Shift font editor monorepo",
"scripts": {
"prepare": "pnpm generate:glyph-info",
"dev": "pnpm run build:native:debug && pnpm --filter @shift/desktop dev",
"dev:release": "pnpm run build:native && pnpm --filter @shift/desktop dev",
"dev:watch": "./scripts/watch.sh debug",
"dev:watch:release": "./scripts/watch.sh release",
"build:native": "pnpm --filter shift-bridge run build",
"build:native:debug": "pnpm --filter shift-bridge run build:debug",
"generate:bridge-types": "turbo run generate:bridge-types",
"generate:types": "pnpm generate:bridge-types",
"generate:glyph-info": "pnpm --filter @shift/glyph-info generate",
"glyph-info:repl": "pnpm --filter @shift/glyph-info repl",
"test": "turbo run test",
"test:desktop": "turbo run test --filter=@shift/desktop --",
"test:unit": "pnpm turbo run test --filter='!shift-bridge'",
"test:integration": "pnpm test:native && cargo test --workspace",
"test:lint": "pnpm --filter @shift/desktop run lint:check",
"test:perf": "pnpm generate:glyph-info && pnpm --filter @shift/desktop exec vitest bench --run",
"test:playwright": "pnpm --filter @shift/desktop test:e2e",
"test:watch": "turbo run test:watch",
"test:native": "turbo run test --filter=shift-bridge",
"typecheck": "pnpm run generate:types && turbo run typecheck",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"deadcode": "knip --workspace apps/desktop --workspace \"packages/*\" --include files,exports",
"deadcode:class": "knip -c knip.class.json --workspace apps/desktop --workspace \"packages/*\" --include classMembers --exclude files,dependencies,unlisted,unresolved,exports,nsExports,types,nsTypes,enumMembers,duplicates,catalog --no-exit-code",
"deadcode:strict": "pnpm deadcode && pnpm deadcode:class",
"deadcode:fix": "knip -c knip.fix.json --workspace apps/desktop --workspace \"packages/*\" --fix --allow-remove-files",
"check-deps": "knip --include dependencies --exclude files,exports",
"agent-skills:sync": "node scripts/sync-agent-skills.mjs",
"agent-skills:check": "node scripts/sync-agent-skills.mjs --check",
"check": "pnpm lint:check && pnpm typecheck && pnpm deadcode:strict && pnpm test",
"format": "oxfmt apps packages",
"format:check": "oxfmt --check apps packages",
"format:files": "oxfmt",
"clean": "rm -rf apps/*/.vite apps/*/out apps/*/node_modules/.vite packages/*/node_modules/.vite node_modules .turbo && cargo clean",
"package": "pnpm run build:native && pnpm --filter @shift/desktop package",
"make": "pnpm run build:native && pnpm --filter @shift/desktop make"
},
"keywords": [
"font",
"editor",
"typography"
],
"author": {
"name": "Kostya Farber",
"email": "kostya.farber@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=24.0.0 <25"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"knip": "^5.84.1",
"oxfmt": "^0.49.0",
"ts-morph": "^27.0.2",
"tsx": "^4.7.0",
"turbo": "^2.10.7",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@11.18.0"
}