-
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.9 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.9 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": "parley-deck-skill",
"version": "2.8.0",
"description": "Install the Parley Deck vendor-neutral AI cooperation skill into local AI agent runtimes or a custom skill directory.",
"license": "Apache-2.0",
"homepage": "https://github.com/feci/parley-deck-skill#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/feci/parley-deck-skill.git"
},
"bugs": {
"url": "https://github.com/feci/parley-deck-skill/issues"
},
"keywords": [
"ai",
"agent",
"agent-skill",
"agy",
"antigravity",
"codex",
"claude",
"gemini",
"multi-agent",
"parley-deck",
"skill"
],
"type": "commonjs",
"bin": {
"parley-deck-skill": "bin/parley-deck-skill.js"
},
"files": [
"skills/",
"README.md",
"LICENSE",
"NOTICE.md",
"bin/",
"lib/",
"gemini-extension.json",
"plugin.json"
],
"pkg": {
"assets": [
"skills/parley-deck/SKILL.md",
"README.md",
"LICENSE",
"skills/**/*",
"skills/parley-deck/agents/**/*",
"skills/parley-deck/references/**/*",
"plugin.json",
"gemini-extension.json"
]
},
"engines": {
"node": ">=18"
},
"scripts": {
"build:portable": "node scripts/build-portable.js all",
"build:portable:current": "node scripts/build-portable.js current",
"build:portable:windows": "node scripts/build-portable.js windows",
"test": "node --test && node scripts/run-python-tests.js && node scripts/build-addon-manifest.js --check",
"pack:dry-run": "npm pack --dry-run",
"test:node": "node --test",
"test:python": "node scripts/run-python-tests.js",
"manifest:addons": "node scripts/build-addon-manifest.js",
"manifest:check": "node scripts/build-addon-manifest.js --check",
"prepack": "node scripts/build-addon-manifest.js --check"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.19.0",
"commonmark": "0.31.2"
}
}