generated from markthree/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.32 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
54
55
56
57
58
59
60
61
62
{
"name": "reactivity-shared",
"version": "0.0.1",
"description": "通用的@vue/reactivity的use-api",
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"test": "vitest",
"typecheck": "tsc",
"build": "vite build && tsc",
"test:watch": "vitest watch",
"coverage": "vitest --coverage",
"prepublish": "vite build && tsc"
},
"keywords": [
"use",
"shared",
"reactivity"
],
"repository": {
"type": "Github",
"url": "https://github.com/markthree/reactivity-shared"
},
"author": {
"name": "markthree",
"email": "[email protected]",
"url": "https://github.com/markthree"
},
"license": "MIT",
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.4.4",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^17.0.8",
"@vue/composition-api": "^1.4.4",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vitest": "^0.0.139",
"vue": "^3.2.28"
}
}