-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "vue-hooks-api",
"version": "0.0.0-beta.5",
"description": "Experimental React hooks implementation in Vue3",
"main": "dist/vue-hooks-api.cjs.js",
"module": "dist/vue-hooks-api.esm.js",
"files": [
"dist/vue-hooks-api.cjs.js",
"dist/vue-hooks-api.esm.js",
"package.json",
"README.md"
],
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amebyte/vue-hooks-api.git"
},
"keywords": [
"vue3",
"vue-hooks",
"react-hooks",
"composition-api",
"vue3-hooks",
"useState",
"useEffect",
"useLayoutEffect"
],
"author": "Cobyte",
"license": "MIT",
"bugs": {
"url": "https://github.com/amebyte/vue-hooks-api/issues"
},
"homepage": "https://github.com/amebyte/vue-hooks-api#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@rollup/plugin-typescript": "^8.2.5",
"babel-jest": "^27.1.1",
"jest": "^27.1.1",
"rollup": "^2.58.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"vue": "^3.2.23"
}
}