-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 938 Bytes
/
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
{
"name": "rxv",
"version": "2.0.0",
"description": "Use Vue3 Composition Api in React, just import @vue/reactivity",
"main": "lib/index.js",
"authors": {
"name": "ssh",
"email": "[email protected]"
},
"repository": "/react-composition-api",
"scripts": {
"dev": "npm run sync & father doc dev",
"prebuild": "npm run sync",
"build:lib": "father build",
"build:doc": "father doc build",
"build": "npm run build:lib & npm run build:doc",
"sync": "node tool/sync-codes.js"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"father": "^2.16.0",
"glob": "^7.1.6",
"typescript": "^3.7.3"
},
"license": "MIT",
"dependencies": {
"@vue/reactivity": "^3.0.0-alpha.3"
},
"keywords": [
"React Composition api",
"Vue Composition api",
"React Reactivity",
"Vue Reactivity",
"React Vue",
"Reactivity",
"@vue/reactivity"
]
}