-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.73 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "pncat",
"type": "module",
"version": "0.13.4",
"packageManager": "pnpm@12.4.2",
"description": "A unified cli tool that enhances package managers catalogs feature.",
"author": "jinghaihan",
"license": "MIT",
"funding": "https://github.com/sponsors/jinghaihan",
"homepage": "https://github.com/jinghaihan/pncat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jinghaihan/pncat.git"
},
"bugs": {
"url": "https://github.com/jinghaihan/pncat/issues"
},
"keywords": [
"pnpm",
"yarn",
"berry",
"bun",
"vlt",
"catalog",
"catalogs",
"workspace"
],
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./rules": "./dist/rules.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"bin": {
"pncat": "./bin/pncat.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"pncat": "tsx ./src/cli.ts",
"build": "tsdown",
"deps": "taze major -I",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"release": "bumpp",
"bootstrap": "pnpm install",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@clack/prompts": "catalog:prod",
"ansis": "catalog:prod",
"cac": "catalog:prod",
"find-up": "catalog:prod",
"package-manager-detector": "catalog:prod",
"pathe": "catalog:prod",
"pnpm-workspace-yaml": "catalog:prod",
"tinyexec": "catalog:prod",
"tinyglobby": "catalog:prod",
"unconfig": "catalog:prod"
},
"devDependencies": {
"tsdown": "catalog:build",
"bumpp": "catalog:dev",
"nano-staged": "catalog:dev",
"simple-git-hooks": "catalog:dev",
"taze": "catalog:dev",
"tsx": "catalog:dev",
"typescript": "catalog:dev",
"@antfu/utils": "catalog:inlined",
"deepmerge": "catalog:inlined",
"detect-indent": "catalog:inlined",
"diff": "catalog:inlined",
"get-npm-meta": "catalog:inlined",
"tildify": "catalog:inlined",
"verkit": "catalog:inlined",
"yaml": "catalog:inlined",
"@octohash/eslint-config": "catalog:lint",
"eslint": "catalog:lint",
"@vitest/coverage-v8": "catalog:test",
"vitest": "catalog:test",
"@types/node": "catalog:types",
"pncat": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"*": "eslint --fix"
},
"inlinedDependencies": {
"@antfu/utils": "9.3.0",
"deepmerge": "4.3.1",
"detect-indent": "7.0.2",
"diff": "9.0.0",
"empathic": "2.0.1",
"fast-npm-meta": "2.2.0",
"get-npm-meta": "0.3.0",
"smol-toml": "1.7.1",
"tildify": "3.0.0",
"verkit": [
"0.3.2",
"0.4.0"
],
"yaml": "2.9.0"
}
}