-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "pi.nvim",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"check": "vp check",
"check:fix": "vp check --fix",
"check:types": "tsgo --noEmit -p tsconfig.json",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"prepare": "simple-git-hooks",
"staged": "vp staged",
"test": "vitest run",
"test:unit": "vitest run test/extension.test.ts",
"test:e2e": "vitest run test/e2e.test.ts",
"test:watch": "vitest"
},
"devDependencies": {
"@mariozechner/pi-ai": "^0.67.3",
"@mariozechner/pi-coding-agent": "0.67.3",
"@types/node": "^24.6.0",
"@typescript/native-preview": "7.0.0-dev.20260318.1",
"simple-git-hooks": "^2.13.1",
"vite-plus": "^0.1.18",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm staged"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.5.1",
"onFail": "download"
}
},
"engines": {
"node": ">=24.5.1"
},
"packageManager": "pnpm@10.22.0",
"pi": {
"extensions": [
"./extension"
]
}
}