-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 KB
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
{
"name": "f-cache-memory",
"private": false,
"license": "MIT",
"version": "0.0.14",
"keywords": [
"cache",
"axios-cache"
],
"description": "cache memory",
"author": "fxss5201",
"repository": {
"type": "git",
"url": "git@github.com:fxss5201/f-cache-memory.git"
},
"type": "module",
"files": [
"dist",
"types"
],
"main": "./dist/cacheMemory.umd.cjs",
"module": "./dist/cacheMemory.js",
"types": "./types/main.d.ts",
"exports": {
"types": "./types/main.d.ts",
"import": "./dist/cacheMemory.js",
"require": "./dist/cacheMemory.umd.cjs"
},
"scripts": {
"dev": "vite",
"test": "vitest --ui",
"build": "tsc && vite build",
"release": "commit-and-tag-version",
"cz": "czg"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.14.12",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.2",
"commit-and-tag-version": "^12.4.1",
"coveralls": "^3.1.1",
"cz-git": "^1.9.3",
"czg": "^1.9.3",
"tsx": "^4.16.2",
"typescript": "^5.4.2",
"vite": "^5.2.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.0.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}