-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
89
90
91
{
"name": "vue-mobx-finegrained",
"version": "1.1.1",
"description": "Vue 3 composable for a complete MobX state management integration.",
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js",
"types": "./dist/src/index.d.ts",
"style": "./dist/style.css"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test": "vitest --reporter=verbose",
"build-only": "rm -rf ./dist/* && vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"peerDependencies": {
"mobx": "^6.9.0",
"mobx-utils": "^6.0.6",
"vue": "^3.0.0"
},
"dependencies": {
"observable-slim": "^0.1.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/inversify": "^2.0.33",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.4.0",
"@vueuse/core": "^10.1.2",
"babel-jest": "^29.5.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"inversify": "^6.0.1",
"inversify-inject-decorators": "^3.1.0",
"jsdom": "^22.0.0",
"lodash": "^4.17.21",
"mobx": "^6.9.0",
"mobx-utils": "^6.0.6",
"npm-run-all": "^4.1.5",
"pinia": "^2.0.36",
"reflect-metadata": "^0.1.13",
"transform-class-properties": "^1.0.0-beta",
"tree-model": "^1.0.7",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.0",
"vue": "^3.0.0",
"vue-dd": "^1.6.4",
"vue-router": "^4.2.0",
"vue-tsc": "^1.6.4",
"vue-use": "^0.2.0",
"wait-for-expect": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/infinite-system/vue-mobx-finegrained"
},
"homepage": "https://github.com/infinite-system/vue-mobx-finegrained",
"bugs": {
"url": "https://github.com/infinite-system/vue-mobx-finegrained/issues",
"email": "ekalashnikov@gmail.com"
},
"keywords": [
"Vue",
"Vue MobX",
"mobX",
"state management",
"reactive"
],
"author": {
"name": "Evgeny Kalashnikov",
"email": "ekalashnikov@gmail.com"
},
"license": "MIT"
}