-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@auto-ml-skills/disco",
"version": "0.1.1",
"description": "Skill-powered research agent with Creator and Researcher modes",
"type": "module",
"discoConfig": {
"name": "disco",
"configDir": ".disco"
},
"bin": {
"disco": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./rpc-entry": {
"types": "./dist/rpc-entry.d.ts",
"import": "./dist/rpc-entry.js"
}
},
"files": [
"dist",
"docs",
"examples",
"npm-shrinkwrap.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json && node scripts/copy-assets.mjs && shx chmod +x dist/cli.js dist/rpc-entry.js",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"test": "vitest --run --config vitest.config.ts",
"test:examples": "tsc --noEmit -p tsconfig.examples.json",
"verify:provenance": "node scripts/upstream-provenance.mjs --check",
"verify:package": "node scripts/verify-package.mjs",
"prepublishOnly": "npm run typecheck && npm test && npm run test:examples && npm run verify:provenance && npm run build && npm run verify:package"
},
"dependencies": {
"@earendil-works/pi-agent-core": "0.83.0",
"@earendil-works/pi-ai": "0.83.0",
"@earendil-works/pi-tui": "0.83.0",
"@silvia-odwyer/photon-node": "0.3.4",
"acorn": "8.16.0",
"chalk": "5.6.2",
"cross-spawn": "7.0.6",
"diff": "8.0.4",
"glob": "13.0.6",
"highlight.js": "10.7.3",
"hosted-git-info": "9.0.3",
"ignore": "7.0.5",
"jiti": "2.7.0",
"minimatch": "10.2.5",
"proper-lockfile": "4.1.2",
"semver": "7.8.0",
"typebox": "1.3.7",
"undici": "8.5.0",
"yaml": "2.9.0"
},
"optionalDependencies": {
"@mariozechner/clipboard": "0.3.9"
},
"devDependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.26",
"@earendil-works/gondolin": "^0.12.0",
"@types/cross-spawn": "6.0.6",
"@types/diff": "7.0.2",
"@types/hosted-git-info": "3.0.5",
"@types/ms": "2.1.0",
"@types/node": "24.12.4",
"@types/proper-lockfile": "4.1.4",
"@types/semver": "7.7.1",
"marked": "^18.0.5",
"shx": "0.4.0",
"typescript": "5.9.3",
"vitest": "4.1.9"
},
"overrides": {
"protobufjs": "7.6.5",
"rimraf": "6.1.2",
"gaxios": {
"rimraf": "6.1.2"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VectorSpaceLab/Auto-ML-Skills.git",
"directory": "src"
},
"keywords": [
"research-agent",
"coding-agent",
"agent-skills",
"cli",
"tui",
"llm"
],
"author": "Auto-ML-Skills contributors",
"license": "MIT",
"engines": {
"node": ">=22.19.0"
}
}