-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 852 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 852 Bytes
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
{
"name": "protocol-knowledge",
"version": "0.1.0",
"private": true,
"description": "Version-pinned protocol knowledge CLI",
"type": "module",
"files": [
"dist/src",
"README.md",
"SKILL.md"
],
"engines": {
"node": ">=22"
},
"bin": {
"protocol-knowledge": "./dist/src/cli/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"dev": "node --import tsx src/cli/main.ts",
"pack:cli": "npm run build && npm pack",
"test": "node --import tsx --test test/*.test.ts"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"fast-xml-parser": "^4.5.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.5",
"tsx": "^4.20.5",
"typescript": "^5.8.2"
}
}