-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.23 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
{
"name": "plugin-library",
"version": "0.4.0",
"private": true,
"description": "Plugin Library explorer: browse installed and marketplace plugins, read every skill in full, hand one to a bot.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ScriptedAlchemy/plugin-library.git"
},
"homepage": "https://github.com/ScriptedAlchemy/plugin-library#readme",
"type": "module",
"scripts": {
"build": "agent-bundle build",
"check": "npm run validate && npm run typecheck && npm test && npm run validate:artifact && npm run test:packed",
"start": "node server.js",
"test": "npm run build && node --test \"test/**/*.test.js\"",
"test:packed": "node scripts/packed-smoke.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"validate": "agent-bundle validate",
"validate:artifact": "agent-bundle validate --artifact artifact",
"open": "node bin/plugin-library.mjs open",
"stop": "node bin/plugin-library.mjs stop"
},
"engines": {
"node": ">=22.19.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"agent-bundle": "https://pkg.pr.new/ScriptedAlchemy/agent-bundle/agent-bundle@477abe956bdb1a862d957733c9d936580d65b5a9",
"typescript": "^7.0.0"
}
}