-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "@mini-cz/config-default",
"version": "0.8.4",
"packageManager": "pnpm@8.6.7",
"author": "Ray <i@mk1.io> (@so1ve)",
"type": "module",
"description": "Mini-cz default config.",
"keywords": [],
"homepage": "https://github.com/CreateWheel/mini-cz#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CreateWheel/mini-cz.git"
},
"bugs": {
"url": "https://github.com/CreateWheel/mini-cz/issues"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && pkgroll",
"watch": "pkgroll --watch"
},
"peerDependencies": {
"mini-cz": "*"
}
}