-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "@vue-reactivity/watch",
"version": "0.2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"repository": "https://github.com/antfu/vue-reactivity-watch.git",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"prepare": "npm run build",
"build": "tsup src/index.ts --format cjs,esm,iife --dts",
"dev": "npm run build -- --watch",
"test": "c8 ava",
"release": "npx bumpp --tag --commit --push && pnpm publish --access public"
},
"peerDependencies": {
"@vue/reactivity": ">=3.0.0-rc.1",
"@vue/shared": ">=3.0.0-rc.1"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.16.1",
"@types/node": "^17.0.15",
"@vue/reactivity": "^3.2.29",
"@vue/shared": "^3.2.29",
"ava": "^4.0.1",
"c8": "^7.11.0",
"esbuild-register": "^3.3.2",
"eslint": "^8.8.0",
"esm": "^3.2.25",
"tsup": "^5.11.13",
"typescript": "^4.5.5"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"esm",
"esbuild-register"
]
},
"dependencies": {
"esbuild": "^0.14.19"
}
}