-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.41 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
{
"name": "@kolirt/vue-modal",
"version": "1.0.3",
"type": "module",
"description": "Simple Vue3 modal package",
"author": "kolirt",
"private": false,
"license": "MIT",
"keywords": [
"vue",
"vue3",
"vuejs",
"dialog",
"alert",
"modal",
"vue-js-modal",
"vue-modal",
"popup"
],
"scripts": {
"build-lib": "run-p type-check-lib build-only-lib",
"build-only-lib": "vite build -c vite.lib.config.ts",
"type-check-lib": "vue-tsc --noEmit -p tsconfig.lib.json --composite false",
"dev-demo": "vite serve -c vite.demo.config.ts",
"build-demo": "vite build -c vite.demo.config.ts",
"preview-demo": "vite preview -c vite.demo.config.ts",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-path .eslintignore",
"format": "prettier --write \"**/*.{ts,js,cjs,vue,json}\""
},
"pre-commit": [
"lint",
"type-check-lib"
],
"files": [
"dist"
],
"typings": "./dist/vue-modal.d.ts",
"main": "./dist/vue-modal.umd.cjs",
"module": "./dist/vue-modal.js",
"exports": {
".": {
"types": "./dist/vue-modal.d.ts",
"import": "./dist/vue-modal.js",
"require": "./dist/vue-modal.umd.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/kolirt/vue-modal"
},
"bugs": {
"url": "https://github.com/kolirt/vue-modal/issues"
},
"homepage": "https://github.com/kolirt/vue-modal#readme",
"peerDependencies": {
"vue": ">=3"
},
"dependencies": {
"js-event-bus": "^1.1.1"
},
"devDependencies": {
"@kyvg/vue3-notification": "^2.9.1",
"bootstrap": "5.3.0",
"vue": "^3.3.2",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^3.2.4",
"sass": "^1.63.6",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.6.4"
}
}