-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.09 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
{
"name": "ship-ui",
"version": "0.1.11",
"license": "MIT",
"homepage": "https://shipui.com",
"repository": {
"type": "git",
"url": "git+https://github.com/shipuicom/core"
},
"engines": {
"node": "24"
},
"contributors": [
{
"name": "SimonBitwise",
"url": "https://github.com/sp90"
},
{
"name": "Mortenpx",
"url": "https://x.com/mortenpx"
}
],
"scripts": {
"ng": "ng",
"patch": "cd projects/ship-ui && npm version patch && cd ../../",
"minor": "cd projects/ship-ui && npm version minor && cd ../../",
"major": "cd projects/ship-ui && npm version major && cd ../../",
"gen:font": "node ./dist/ship-ui/bin/ship-fg.mjs --src='./projects/design-system/src' --out='./projects/design-system/public' --rootPath='/' --verbose",
"watch:font": "node ./dist/ship-ui/bin/ship-fg.mjs --src='./projects/design-system/src' --out='./projects/design-system/public' --rootPath='/' --watch --verbose",
"start": "bun run watch:font & ng serve --port=4205",
"mcp:prep": "bun mcp-server/scan.ts && mkdir -p projects/ship-ui/bin/mcp && bun build mcp-server/index.ts --outfile projects/ship-ui/bin/mcp/index.js --target node --bundle && chmod +x projects/ship-ui/bin/mcp/index.js",
"build:zig": "cd projects/ship-ui/bin/src && zig build-exe scanner.zig -O ReleaseFast -femit-bin=../ship-fg-scanner",
"build:cli": "cd projects/ship-ui && bun build ./bin/ship-fg.ts --target=node --outfile=./bin/ship-fg.mjs",
"build": "bun run mcp:prep && bun run build:zig && bun run build:cli && ng build ship-ui",
"test": "ng test ship-ui",
"build:prod": "bun run mcp:prep && bun run build:zig && bun run build:cli && ng build ship-ui --configuration production",
"build:docs": "bun run build:prod && bun run gen:font && ng build design-system --configuration production",
"serve:docs": "npm run serve-docs",
"watch": "ng build ship-ui --watch --configuration development",
"mcp:update": "cd mcp-server && bun run scan.ts",
"mcp:start": "cd mcp-server && bun run index.ts",
"serve:ssr:design-system": "node dist/design-system/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/common": "^21.2.3",
"@angular/compiler": "^21.2.3",
"@angular/core": "^21.2.3",
"@angular/forms": "^21.2.3",
"@angular/platform-browser": "^21.2.3",
"@angular/platform-browser-dynamic": "^21.2.3",
"@angular/platform-server": "^21.2.3",
"@angular/router": "^21.2.3",
"@angular/ssr": "^21.2.3",
"@hono/node-server": "^1.19.12",
"harfbuzzjs": "^0.10.1",
"highlight.js": "^11.11.1",
"hono": "^4.12.9",
"rxjs": "~7.8.2",
"wawoff2": "^2.0.1"
},
"devDependencies": {
"@angular/build": "^21.2.3",
"@angular/cli": "^21.2.3",
"@angular/compiler-cli": "^21.2.3",
"@phosphor-icons/web": "^2.1.2",
"@types/bun": "^1.3.11",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.1",
"express": "^5.2.1",
"jsdom": "^29.0.1",
"ng-packagr": "^21.2.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
}
}