-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "vue-dfs-store",
"version": "0.0.3",
"description": "A dead-!@#$%-simple store for VueJS using the built-in Vue reactivity system and inspired by Zustand actions",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}'",
"serve-client": "vue-cli-service serve examples/src/main.ts",
"build-client": "vue-cli-service build examples/src/main.ts",
"lint-client": "vue-cli-service lint examples",
"dev": "npm run watch & npm run serve-client"
},
"files": [
"dist/*js",
"dist/*d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JacobSNGoodwin/vue-dfs-store.git"
},
"keywords": [
"vue",
"store",
"typescript",
"state management"
],
"author": "Jacob Goodwin",
"license": "MIT",
"dependencies": {
"vue": "^3.0.0",
"core-js": "^3.6.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"eslint": "^7.12.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.0-0",
"prettier-eslint": "^11.0.0",
"prettier": "^1.19.1",
"rollup": "^2.32.1",
"typescript": "^4.0.5",
"vue-router": "^4.0.0-rc.1"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}