-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.74 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.74 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
{
"name": "config-rocket",
"type": "module",
"version": "0.6.4",
"packageManager": "[email protected]",
"description": "Easily create and deploy configurable config packs!",
"author": "NamesMT <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/namesmt",
"homepage": "https://github.com/namesmt/config-rocket#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/namesmt/config-rocket.git"
},
"bugs": "https://github.com/namesmt/config-rocket/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli.d.mts",
"default": "./dist/cli.mjs"
},
"require": {
"types": "./dist/cli.d.cts",
"default": "./dist/cli.cjs"
}
}
},
"source": "./src/index.ts",
"bin": {
"config-rocket": "./dist/cli-entry.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.13.1"
},
"scripts": {
"start": "tsx",
"watch": "tsx watch",
"stub": "unbuild --stub",
"dev": "NODE_ENV=dev pnpm run watch src/index.ts",
"play": "pnpm run stub && pnpm run --filter playground dev",
"play:useBuild": "pnpm run build && pnpm run --filter playground dev",
"lint": "eslint .",
"test": "vitest",
"test:types": "tsc --noEmit",
"check": "pnpm lint && pnpm test:types && vitest run --coverage",
"build": "unbuild",
"release": "pnpm dlx changelogen@latest --release --push --publish",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.4.2",
"defu": "^6.1.4",
"fflate": "^0.8.2",
"hookable": "^5.5.3",
"jiti": "^2.4.2",
"pathe": "^2.0.3",
"std-env": "^3.9.0",
"tinyglobby": "^0.2.13",
"yaml": "^2.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@namesmt/utils": "^0.5.13",
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^3.1.4",
"c12": "^3.0.4",
"confbox": "^0.2.2",
"eslint": "^9.27.0",
"lint-staged": "^16.0.0",
"simple-git-hooks": "^2.13.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vitest": "^3.1.4"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39"
},
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks",
"unrs-resolver"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}