-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "unplugin-generate-component-name",
"private": false,
"author": "CCherry07",
"license": "MIT",
"version": "0.3.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./types": {
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./vite": {
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"scripts": {
"test": "vitest",
"dev": "tsup --watch src",
"build": "tsup",
"release": "bumpp && npm run build && npm publish --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/semver": "^7.5.8",
"bumpp": "^9.4.0",
"rollup": "^4.12.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vitest": "^1.3.1"
},
"dependencies": {
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"@rollup/pluginutils": "^5.1.0",
"@types/babel__traverse": "^7.20.5",
"@vue/compiler-sfc": "^3.4.21",
"magic-string": "^0.30.8",
"semver": "^7.6.0",
"unplugin": "^1.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CCherry07/unplugin-generate-component-name.git"
},
"keywords": [
"unplugin"
],
"bugs": {
"url": "https://github.com/CCherry07/unplugin-generate-component-name/issues"
},
"homepage": "https://github.com/CCherry07/unplugin-generate-component-name#readme",
"description": ""
}