-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2 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
79
80
81
82
83
{
"name": "@zaparoo/cli",
"version": "2.0.0",
"description": "Remote CLI and Agent Skills for exploring Zaparoo APIs, developing integrations, and diagnosing Core devices",
"type": "module",
"packageManager": "pnpm@10.33.0",
"bin": {
"zaparoo-cli": "./build/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "pnpm run build",
"lint": "biome check src/ scripts/",
"lint:fix": "biome check --write src/ scripts/",
"format": "biome format --write src/ scripts/",
"check": "biome ci src/ scripts/",
"typecheck": "tsc --noEmit",
"skills:check": "node scripts/validate-skills.mjs",
"eval:agents": "pnpm run build && node scripts/evaluate-agent-scenarios.mjs",
"test": "vitest run",
"test:watch": "vitest",
"package:smoke": "node scripts/smoke-packed-package.mjs",
"api:audit": "node scripts/audit-core-api.mjs",
"api:user:audit": "node scripts/audit-user-api.mjs"
},
"files": [
"build",
"docs",
"skills"
],
"publishConfig": {
"access": "public"
},
"pi": {
"skills": [
"skills"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZaparooProject/zaparoo-cli.git"
},
"homepage": "https://github.com/ZaparooProject/zaparoo-cli#readme",
"bugs": {
"url": "https://github.com/ZaparooProject/zaparoo-cli/issues"
},
"keywords": [
"pi-package",
"agent-skills",
"api",
"cli",
"developer-tools",
"json-rpc",
"nfc",
"retro-gaming",
"websocket",
"zaparoo"
],
"license": "GPL-3.0-or-later",
"dependencies": {
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"bonjour-service": "^1.3.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}