-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "@vue-reactivity/use",
"version": "0.1.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "https://github.com/vue-reactivity/use.git",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"update": "esno scripts/update.ts",
"build": "rollup -c && esno scripts/types-fix.ts",
"dev": "rollup -c --watch",
"test": "c8 ava",
"release": "npx bumpp --tag --commit --push && npm publish --access public"
},
"dependencies": {
"@vue-reactivity/scope": "^0.2.1"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.3.4",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/node": "^14.14.6",
"@vueuse/core": "^4.0.0-beta.35",
"@vueuse/shared": "^4.0.0-beta.35",
"axios": "^0.20.0",
"eslint": "^7.12.1",
"esno": "^0.2.4",
"rollup": "^2.33.1",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-typescript2": "^0.28.0",
"tsup": "^3.7.1",
"typescript": "^4.0.5",
"vue": "^3.0.2"
}
}