-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "@aspect-mark/skills",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"description": "Claude Code Skills & TypeScript Utilities",
"author": "JS-mark <aspect_mark@163.com>",
"license": "MIT",
"homepage": "https://github.com/JS-mark/skills",
"repository": {
"type": "git",
"url": "git+https://github.com/JS-mark/skills.git"
},
"bugs": {
"url": "https://github.com/JS-mark/skills/issues"
},
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"gen:skill": "tsx scripts/gen-skill.ts",
"update-plugin": "tsx scripts/update-plugin.ts",
"release": "bumpp",
"docs:dev": "pnpm --filter @aspect-mark/docs dev",
"docs:build": "pnpm --filter @aspect-mark/docs build",
"docs:preview": "pnpm --filter @aspect-mark/docs preview",
"market:dev": "pnpm --filter @aspect-mark/marketplace dev",
"market:build": "pnpm --filter @aspect-mark/marketplace build",
"market:preview": "pnpm --filter @aspect-mark/marketplace preview"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}