-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 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
43
44
45
46
47
48
49
{
"name": "@vue-reactivity/when",
"version": "0.2.1",
"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/vue-reactivity/when.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"
},
"dependencies": {
"@vue-reactivity/watch": "^0.1.6",
"@vue/reactivity": ">=3.0.0",
"@vue/shared": ">=3.0.0"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.3.3",
"@types/node": "^14.11.8",
"ava": "^3.13.0",
"c8": "^7.3.3",
"esbuild-register": "^1.0.2",
"eslint": "^7.11.0",
"esm": "^3.2.25",
"tsup": "^3.7.0",
"typescript": "^4.0.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"esm",
"esbuild-register"
]
}
}