-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "vuejs-dialog",
"version": "2.0.0-rc.1",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/vuejs-dialog.es.js",
"typings": "./dist/vuejs-dialog.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Godofbrowser/vuejs-dialog.git"
},
"author": {
"name": "Ajeh Emeke",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Godofbrowser/vuejs-dialog/issues"
},
"homepage": "https://github.com/Godofbrowser/vuejs-dialog#readme",
"keywords": [
"vue",
"vuejs",
"confirm",
"dialog",
"alert",
"simple",
"loading-dialog",
"hard-confirm",
"soft-confirm"
],
"scripts": {
"lib:build": "vite build --config vite-lib.config.ts && tail -n +3 src/plugin/vue-shim.d.ts >> dist/vuejs-dialog.d.ts",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"@vuepress/bundler-vite": "^2.0.0-rc.15",
"@vuepress/plugin-google-analytics": "2.0.0-rc.54",
"@vuepress/plugin-shiki": "^2.0.0-rc.42",
"@vuepress/theme-default": "^2.0.0-rc.42",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^24.0.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.0.3",
"sass": "^1.77.6",
"typescript": "~5.4.0",
"vite": "^5.4.6",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-vue-devtools": "^7.0.18",
"vitest": "^1.4.0",
"vue-router": "^4.3.0",
"vue-tsc": "^2.0.6",
"vuepress": "^2.0.0-rc.15"
}
}