-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.51 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
{
"name": "pnpm-category-catalog",
"type": "module",
"version": "1.0.1",
"packageManager": "pnpm@10.15.1",
"description": "A CLI tool for managing the pnpm workspace catalog, which helps you categorize the packages in the catalog and update the associated package.json reference.",
"author": "lonewolfyx <olddrivero.king@qq.com>",
"license": "MIT",
"homepage": "https://github.com/ScaffoldCore/pnpm-category-catalog",
"bugs": {
"url": "https://github.com/ScaffoldCore/pnpm-category-catalog/issues"
},
"keywords": [
"catalog",
"catalogs",
"category"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"pcc": "./bin/cli.js"
},
"files": [
"dist",
"logo.svg"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"test:cov": "npx vitest run --coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "pnpm build",
"examples:setup": "tsx scripts/examples-setup.ts",
"dev:basic": "tsx scripts/examples-setup.ts basic && tsx src/cli.ts --cwd examples/workspace/basic",
"dev:category": "tsx src/cli.ts --cwd examples/workspace/basic",
"prepare": "simple-git-hooks"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"ansi-escapes": "^7.2.0",
"boxen": "^8.0.1",
"cac": "^6.7.14",
"console-table-printer": "^2.15.0",
"defu": "^6.1.4",
"find-up": "^8.0.0",
"glob": "^13.0.0",
"jiti": "^2.6.1",
"tinyexec": "^1.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@lonewolfyx/tsconfig": "^0.0.6",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "4.0.16",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"picocolors": "^1.1.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.18.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}