-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.59 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
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
{
"author": "Jinghui_S",
"description": "A modal state manager for vue. ",
"name": "vue-modal-provider",
"private": false,
"version": "0.6.0",
"main": "./dist/lib/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/es/index.d.ts",
"exports": {
".": {
"types": "./dist/es/index.d.ts",
"import": "./dist/es/index.mjs",
"require": "./dist/lib/index.js"
},
"./es": {
"types": "./dist/es/index.d.ts",
"import": "./dist/es/index.mjs"
},
"./lib": {
"types": "./dist/lib/index.d.ts",
"require": "./dist/lib/index.js"
},
"./es/*.mjs": {
"types": "./dist/es/*.d.ts",
"import": "./dist/es/*.mjs"
},
"./es/*": {
"types": [
"./dist/es/*.d.ts",
"./dist/es/*/index.d.ts"
],
"import": "./dist/es/*.mjs"
},
"./lib/*.js": {
"types": "./dist/lib/*.d.ts",
"require": "./dist/lib/*.js"
},
"./lib/*": {
"types": [
"./dist/lib/*.d.ts",
"./dist/lib/*/index.d.ts"
],
"require": "./dist/lib/*.js"
},
"./*": "./dist/*"
},
"files": [
"dist",
"package.json"
],
"scripts": {
"dev": "vite",
"build": "rimraf dist && vue-tsc -p tsconfig.build.json && node build.cjs && vite build --emptyOutDir false",
"preview": "vite preview",
"release": "pnpm build && npx release-it",
"clean": "rm -rf node_modules **/*/node_modules"
},
"keywords": [
"vue",
"vue-modal",
"vue-modal-provider"
],
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
},
"github": {
"release": true,
"web": true
},
"npm": {
"publish": true
}
},
"license": "MIT",
"homepage": "https://github.com/JinghuiS/vue-modal-provider",
"repository": {
"type": "git",
"url": "https://github.com/JinghuiS/vue-modal-provider"
},
"bugs": {
"url": "https://github.com/JinghuiS/vue-modal-provider/issues",
"email": "[email protected]"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"vue": "^3.4.23"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"fast-glob": "^3.3.2",
"gulp": "^5.0.0",
"release-it": "^15.4.2",
"rimraf": "^3.0.2",
"typescript": "~5.4.0",
"vite": "^5.1.6",
"vue-tsc": "^2.0.6"
}
}