-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.92 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": "gitart-vue-dialog",
"version": "3.1.0",
"scripts": {
"dev": "vite --config dev/vite.config.ts",
"build": "node build/build.js",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --p ./build/tsconfig.json",
"lint": "yarn stylelint && yarn eslint",
"stylelint": "stylelint src/**/*.vue",
"eslint": "eslint . --ext .js,.ts,.vue",
"test": "vitest"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"keywords": [
"gitart",
"gitart dialog",
"gitart-vue-dialog",
"vue",
"vue 3",
"vue3",
"dialog",
"modal",
"dialog component",
"modal component",
"vue modal",
"vue3 modal",
"vue dialog",
"vue3 dialog"
],
"repository": {
"type": "git",
"url": "https://github.com/gitart-group/vue-dialog.git",
"directory": "."
},
"author": {
"name": "Michael Gitart",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@gitart/eslint-config-vue": "0.3.0",
"@types/node": "^18.16.16",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/runtime-core": "^3.3.4",
"@vue/test-utils": "^2.3.2",
"@vueuse/core": "^10.1.2",
"eslint": "^8.42.0",
"happy-dom": "^9.20.3",
"sass": "^1.62.1",
"shelljs": "^0.8.5",
"stylelint": "^15.7.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.1.3",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"vite": "^3.2.7",
"vite-plugin-windicss": "^1.9.0",
"vitest": "^0.32.0",
"vue": "^3.3.4",
"vue-tsc": "^1.6.5",
"windicss": "^3.5.6"
},
"peerDependencies": {
"vue": "^3.2.6"
}
}