-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 738 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 738 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
{
"name": "capabilitykit",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.4",
"repository": {
"type": "git",
"url": "git+https://github.com/FocusedObjective/capabilitykit.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @capabilitykit/core && npm run build --workspace @capabilitykit/cli",
"test": "vitest run",
"capabilitykit": "node packages/cli/dist/index.js",
"verify": "npm run build && npm test && npm run capabilitykit -- validate && npm run capabilitykit -- compile"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}