-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.07 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
{
"name": "widok",
"version": "0.5.3",
"description": "Vue3 simple store",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wszerad/widok.git"
},
"exports": {
".": {
"import": "./dist/widok.es.js",
"require": "./dist/widok.umd.js"
}
},
"main": "dist/widok.umd.js",
"module": "dist/widok.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"vuex",
"vue-devtools",
"reactive",
"redux",
"state",
"typings"
],
"scripts": {
"test": "echo \"No test specified\" && exit 1",
"dev": "vite && start http://localhost:3000/example/index.html",
"build": "vite build && tsc"
},
"dependencies": {
"@vue/devtools-api": "^6.0.0-beta.6"
},
"peerDependencies": {
"vue": "^3.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"typescript": "^4.1.3",
"@types/node": "^14.14.10",
"eslint": "^7.14.0",
"vite": "^2.0.0-beta.61",
"vue": "^3.0.5",
"@vitejs/plugin-vue": "^1.1.3",
"@vue/compiler-sfc": "^3.0.5",
"reflect-metadata": "^0.1.13"
}
}