-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.56 KB
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
{
"name": "@erag/vue-toastification",
"version": "1.1.4",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-toastification.umd.cjs",
"module": "./dist/vue-toastification.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/vue-toastification.js",
"require": "./dist/vue-toastification.umd.cjs",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"release": "release-it",
"lint": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\" && eslint . --fix"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@release-it/conventional-changelog": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-vue": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.6.2",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"release-it": "^19.2.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.50.1",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.0.0"
}
}