-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "wire-vue",
"version": "1.1.12",
"description": "",
"license": "MIT",
"type": "module",
"author": {
"email": "vladimir.minkin@gmail.com",
"name": "Vladimir Minkin"
},
"files": [
"dist"
],
"main": "./dist/wire-vue.es.js",
"module": "./dist/wire-vue.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/wire-vue.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/wire-vue.es.js"
}
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "vue-tsc && vite build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.29.0",
"typescript": "5.5.4",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-remove-console": "^2.2.0",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6",
"wire-ts": "1.1.11"
}
}