-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
{
"name": "vue-use-state-effect",
"version": "0.1.5",
"description": "Fast and small library built on top of the native Vue.js API, providing a safe and sharable state across the app for your composables and functions.",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"prepare": "husky install",
"build": "rimraf ./lib/ && rollup -c",
"dev": "rollup -c -w",
"test": "rimraf ./history/ && jest --passWithNoTests --coverage",
"prepublish": "yarn build",
"demo": "yarn build && cd demo && yarn && yarn dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukasborawski/vue-use-state-effect.git"
},
"keywords": [
"vue",
"vue3",
"composable",
"nuxt",
"nuxt3",
"javascript",
"typescript"
],
"author": "lukasborawski",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukasborawski/vue-use-state-effect/issues"
},
"homepage": "https://github.com/lukasborawski/vue-use-state-effect#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.20.2",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^13.1.0",
"@jest/types": "^29.0",
"@rollup/plugin-terser": "^0.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"babel-jest": "^29.0",
"husky": "^8.0.0",
"jest": "^29.0",
"prettier": "^2.4.1",
"rimraf": "^4.0.0",
"rollup": "^3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-ignore": "^1.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"ts-jest": "^29.0",
"ts-node": "^10.9.1",
"typescript": "^5",
"vue": "^3.5"
},
"peerDependencies": {
"vue": "^3.5"
}
}