-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 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
{
"name": "agentstore",
"version": "0.1.0",
"private": true,
"description": "Open-source Claude Code plugin marketplace with x402 payments",
"repository": {
"type": "git",
"url": "git+https://github.com/techgangboss/agentstore.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run --workspaces dev",
"build": "npm run --workspaces build",
"lint": "npm run --workspaces lint",
"test": "npm run --workspaces --if-present test",
"test:coverage": "npm run --workspaces --if-present test:coverage",
"typecheck": "npm run --workspaces --if-present typecheck"
},
"devDependencies": {
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18"
}
}