-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 904 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 904 Bytes
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": "taube",
"version": "1.6.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"test": "vitest"
},
"keywords": [],
"author": "zhuscat",
"license": "ISC",
"devDependencies": {
"@dcloudio/uni-app": "3.0.0-3090620231104002",
"@sinonjs/fake-timers": "^11.2.2",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^14.10.2",
"prettier": "3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.6.0",
"vue": "^3.4.27"
},
"peerDependencies": {
"@dcloudio/uni-app": ">=3.0.0",
"vue": "^3.4.21"
}
}