forked from alan-wu/image-dialog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@abi-software/image-dialog",
"version": "0.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ABI-Software/image-dialog.git"
},
"type": "module",
"files": [
"dist/*",
"src/*",
"*.json",
"*.js"
],
"main": "./dist/image-dialog.umd.cjs",
"module": "./dist/image-dialog.js",
"exports": {
".": {
"import": "./dist/image-dialog.js",
"require": "./dist/image-dialog.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"serve": "vite",
"build-bundle": "vite build",
"preview": "vite preview",
"lint": "eslint src",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish",
"changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
"version": "npm run build-bundle; npm run changelog; git add CHANGELOG.md"
},
"dependencies": {
"@abi-software/gallery": "^0.5.0-vue3.5",
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.25.0",
"sass": "^1.75.0",
"vite": "^5.2.0"
}
}