-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 925 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
36
37
38
39
40
41
42
43
44
{
"name": "@asermax/pi-cc-plugins",
"version": "1.6.0",
"description": "Use Claude Code plugins (skills & agents) directly in Pi",
"type": "module",
"keywords": [
"pi-package",
"pi-extension"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/asermax/pi-cc-plugins.git"
},
"files": [
"index.ts",
"src/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.5",
"semantic-release": "^25.0.3",
"vitest": "^4.1.5"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
}
}