-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "use-x-provider",
"version": "0.2.0",
"description": "A small and concise way to manage data state",
"keywords": [
"vue",
"state manage",
"vuex",
"pinia",
"context",
"provider",
"type reference"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/types/src/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"homepage": "https://github.com/phillyx/useXprovider",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"test": "nr test:3",
"test:2": "vue-demi-switch 2 vue2 && vitest run --silent",
"test:3": "vue-demi-switch 3 && vitest run",
"test:all": "nr test:3 && nr test:2 && vue-demi-switch 3",
"test:watch": "vitest --watch",
"clean":"rimraf dist"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0 || ^3.2.26"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"@vueuse/shared": "^8.6.0",
"vue-demi": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.23.0",
"@antfu/ni": "^0.16.2",
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^28.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.31",
"@types/prettier": "^2.6.0",
"eslint": "^8.14.0",
"jest": "^28.1.0",
"jsdom": "^19.0.0",
"lodash-es": "^4.17.21",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.5",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.32.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vitest": "^0.13.1",
"vue": "^3.2.26"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}