-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"packageManager": "[email protected]",
"name": "vue-memoize-dict",
"description": "vue-memoize-dict is a Vue dictionary cache, support Vue2 and Vue3.",
"version": "1.1.3",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm run build",
"dev": "vitest --coverage --coverage.include=src/**.ts",
"test": "vitest --coverage --root=src",
"test:ui": "vitest --ui"
},
"author": "",
"license": "",
"homepage": "https://vue-memoize-dict.oo1.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/yanhao98/vue-memoize-dict.git"
},
"peerDependencies": {
"@vueuse/core": ">8.0.0",
"vue": ">2.7.0"
},
"devDependencies": {
"@types/node": "~22.8.1",
"@vitest/coverage-v8": "2.1.3",
"@vitest/ui": "2.1.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"publishConfig": {
"provenance": true
}
}