-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.39 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.39 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
{
"name": "shift-monorepo",
"version": "0.0.1",
"private": true,
"description": "Shift font editor monorepo",
"scripts": {
"prepare": "git submodule update --init --recursive && pnpm generate:glyph-info",
"dev": "pnpm run build:native:debug && pnpm --filter @shift/desktop dev",
"dev:watch": "scripts/watch.sh",
"build": "turbo run build",
"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:unit": "pnpm turbo run test --filter='!shift-bridge'",
"test:integration": "pnpm --filter shift-bridge run test && cargo test -p shift-edit --test font_loading --test round_trip",
"test:lint": "pnpm --filter @shift/desktop run lint:check",
"test:typecheck": "pnpm typecheck",
"test:perf": "pnpm --filter @shift/desktop exec vitest bench --run",
"test:playwright": "pnpm --filter @shift/desktop test:e2e",
"test:ci": "pnpm test:lint && pnpm format:check && pnpm test:typecheck && pnpm test:unit && pnpm test:native && cargo test --workspace && pnpm deadcode:strict",
"test:native": "pnpm --filter shift-bridge run test",
"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",
"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",
"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",
"devDependencies": {
"knip": "^5.84.1",
"oxfmt": "^0.49.0",
"ts-morph": "^27.0.2",
"tsx": "^4.7.0",
"turbo": "^2.7.5",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"tar": ">=7.5.8",
"qs": ">=6.14.2",
"glob": ">=10.5.0",
"esbuild": ">=0.25.0",
"js-yaml": ">=4.1.1",
"tmp": ">=0.2.4",
"minimatch": ">=10.2.1",
"fast-xml-parser": ">=5.3.6",
"beautiful-mermaid": ">=0.1.3",
"@isaacs/brace-expansion": ">=5.0.1",
"lodash": ">=4.17.23"
}
},
"packageManager": "pnpm@9.0.0"
}