-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "@trogonstack/aipm",
"version": "0.5.0",
"description": "AI Plugin Manager - Plugin manager for AI coding assistants (Claude Code, Cursor, and more). Sync plugins from multiple marketplaces.",
"type": "module",
"homepage": "https://github.com/TrogonStack/aipm",
"repository": {
"type": "git",
"url": "https://github.com/TrogonStack/aipm.git"
},
"bugs": {
"url": "https://github.com/TrogonStack/aipm/issues"
},
"license": "MIT",
"author": "Straw Hat Team",
"prettier": "@straw-hat/prettier-config",
"bin": {
"aipm": "./src/cli.ts"
},
"scripts": {
"ci:all": "bun run format:check && bun run typecheck && bun run test",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"dev": "bun --watch src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci": "bun run format:check && bun run typecheck && bun run test:coverage",
"build": "bun ./script/build.ts --single",
"build:all": "bun ./script/build.ts"
},
"devDependencies": {
"@straw-hat/prettier-config": "3.1.5",
"@types/bun": "1.2.2",
"@types/lodash.merge": "4.6.9",
"prettier": "3.6.2"
},
"peerDependencies": {
"typescript": "5.9.3"
},
"dependencies": {
"lodash.merge": "4.6.2",
"yaml": "2.8.1",
"zod": "4.1.12"
}
}