-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.8 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.8 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
{
"name": "agent-skill-manager",
"version": "2.6.1",
"description": "Interactive TUI for managing installed skills for AI coding agents (Claude Code, Codex, OpenClaw, and more)",
"type": "module",
"bin": {
"agent-skill-manager": "dist/agent-skill-manager.js",
"asm": "dist/agent-skill-manager.js"
},
"scripts": {
"start": "tsx src/index.tsx",
"typecheck": "tsc --noEmit",
"test": "vitest run src/",
"test:watch": "vitest src/",
"test:e2e": "vitest run tests/e2e/",
"test:e2e:node": "vitest run tests/e2e/node-e2e.test.ts",
"test:e2e:install": "vitest run tests/e2e/npm-install-e2e.test.ts",
"test:site": "vitest run website-src/",
"test:all": "vitest run src/ && vitest run website-src/ && npm run build && vitest run tests/e2e/",
"dev": "tsx src/index.tsx",
"dev:site": "vite --config website-src/vite.config.js",
"build": "tsx scripts/build.ts",
"build:site": "vite build --config website-src/vite.config.js",
"preindex": "tsx scripts/preindex.ts",
"build:website": "tsx scripts/build-catalog.ts && npm run build:site",
"lint:site": "eslint --config website-src/eslint.config.js 'website-src/src/**/*.{js,jsx}'",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.cjs"
},
"files": [
"dist/",
"data/",
"scripts/postinstall.cjs",
"README.md",
"LICENSE"
],
"dependencies": {
"@inkjs/ui": "^2",
"ink": "^5",
"react": "^18",
"react-dom": "^18",
"react-window": "^2.2.7",
"yaml": "^2.8.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"agent-skill-manager",
"tui",
"cli",
"ai-agents",
"claude-code",
"codex",
"openclaw",
"skills"
],
"author": "luongnv89",
"license": "MIT",
"homepage": "https://github.com/luongnv89/asm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/luongnv89/asm.git"
},
"bugs": {
"url": "https://github.com/luongnv89/asm/issues"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^18",
"@types/react": "^18",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^2",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"esbuild": "^0.24",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"ink-testing-library": "^4",
"jsdom": "^25.0.1",
"lucide-react": "^0.468.0",
"minisearch": "7.2.0",
"postcss": "^8.4.49",
"prettier": "^3.8.1",
"react-router-dom": "^6.28.0",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4",
"typescript": "^5",
"vite": "^5.4.11",
"vitest": "^2"
}
}