-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.49 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
{
"name": "@makit/server",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"author": "Khanh Chuong Le",
"type": "module",
"packageManager": "pnpm@11.8.0",
"bin": {
"makit": "./dist/src/index.js"
},
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"preinstall": "node -e \"const ua=process.env.npm_config_user_agent||'';if(!ua.startsWith('pnpm')){console.error('\\n[makit] Use pnpm: corepack enable && pnpm install\\n');process.exit(1)}\"",
"dev": "tsx watch src/index.ts serve",
"start": "tsx src/index.ts serve",
"build": "tsc -p .",
"typecheck": "tsc -p . --noEmit && tsc -p ../.pi/extensions/pi-computer-use --noEmit",
"test": "node --import tsx --test --test-timeout=120000 \"src/**/*.test.ts\" \"test/**/*.test.ts\" \"../.pi/extensions/**/*.test.ts\"",
"test:watch": "node --import tsx --test --watch \"src/**/*.test.ts\" \"test/**/*.test.ts\"",
"e2e:verify-pi": "tsx test/fake-model/verify-pi.ts",
"e2e:verify-codex": "tsx test/verify-codex.ts",
"secure:install": "pnpm install --frozen-lockfile",
"secure:audit": "pnpm audit --prod"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"bonjour-service": "^1.4.2",
"qrcode-terminal": "^0.12.0",
"selfsigned": "^5.5.0",
"ws": "^8.21.1"
},
"devDependencies": {
"@types/node": "^26.1.2",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
}
}