-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 KB
/
package.json
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
{
"name": "@fe6/nvcr",
"version": "0.1.1",
"description": "Vue 3.x 组件库按需加载的配置",
"scripts": {
"dev": "tsup src/*.ts --watch src",
"build": "tsup src/*.ts && esno scripts/postbuild.ts",
"lint": "pretty-quick",
"husky": "husky install",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --tag --push"
},
"author": "李梦龙 <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/fe6/nvcr/issues"
},
"homepage": "https://github.com/fe6/nvcr#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@fe6/norm-git-cz-config": "^0.1.1",
"@fe6/norm-prettier": "^0.1.0",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.3.0",
"esno": "^0.14.1",
"fast-glob": "^3.2.11",
"husky": "^7.0.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"tsup": "^5.11.13",
"typescript": "^4.6.2",
"unplugin-vue-components": "^0.17.21",
"vue": "^3.2.31"
},
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@fe6/norm-git-cz-config/customizable.js"
}
}
}