-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 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
{
"name": "@tribalnerd/pi-notes",
"version": "0.2.0",
"description": "A Pi extension for deterministic human notes across project and global scopes.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisWinters/pi-notes.git"
},
"bugs": {
"url": "https://github.com/ChrisWinters/pi-notes/issues"
},
"homepage": "https://github.com/ChrisWinters/pi-notes#readme",
"files": [
"src",
"dist",
"skills",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"bin": {
"pi-notes": "./dist/src/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"cli": "node ./dist/src/cli.js",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"keywords": [
"pi",
"pi-package",
"pi-extension",
"extension",
"notes",
"cli"
],
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "^0.34.41",
"@types/node": "^22.15.17",
"eslint": "^9.24.0",
"eslint-import-resolver-typescript": "^4.3.5",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^3.1.1"
}
}