generated from markthree/node-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
63
64
65
66
67
68
69
70
{
"version": "0.9.3",
"name": "file-computed",
"description": "文件型计算属性,当且仅当文件变化时才重新做计算",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/file-computed.git"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "vitest --u",
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"play": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"build:watch": "npm run build -- --watch src",
"release": "bumpp --commit --push --tag && npm publish"
},
"keywords": [
"lib",
"tool",
"node",
"file",
"utils",
"computed"
],
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"bugs": {
"email": "1801982702@qq.com",
"url": "https://github.com/dishait/file-computed/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.4",
"bumpp": "^9.2.0",
"find-up": "^6.3.0",
"mem": "^9.0.2",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"dependencies": {
"close-with-grace": "^1.2.0",
"consola": "^3.2.3",
"destr": "^2.0.1",
"fast-json-stringify": "^5.8.0",
"m-type-tools": "^0.4.1",
"ohash": "^1.1.3",
"perfect-debounce": "^1.0.0",
"unstorage": "^1.9.0"
}
}