-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@vue3-composables/async-computed",
"version": "0.0.1",
"main": "dist/async-computed.es.js",
"module": "dist/async-computed.es.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"start": "bili -w",
"build": "bili",
"test": "jest"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hmon/async-computed.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"@vue/composition-api": "^1.0.0-beta.1",
"@vue/test-utils": "^2.0.0-beta.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"bili": "^5.0.5",
"jest": "^26.4.2",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3",
"vue": "^3.0.0",
"vue-jest": "^3.0.7"
},
"dependencies": {
"vue-demi": "^0.3.3"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-beta.1",
"vue": "^2.0.0 || >=3.0.0-rc.0"
}
}