-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.25 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
{
"name": "@zhangbao/fs-lite",
"version": "0.1.0",
"description": "A lightweight alternative to fs-extra",
"type": "module",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baooab/node-fs-lite.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"dev": "unbuild --stub",
"build": "unbuild",
"prepare": "husky install"
},
"keywords": [
"fs",
"file",
"file system",
"copy",
"directory",
"lite",
"mkdirp",
"mkdir",
"mkdirs",
"recursive",
"json",
"read",
"write",
"extra",
"delete",
"remove",
"touch",
"create",
"text",
"output",
"move",
"promise"
],
"author": "Bao Zhang",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.4.2",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"husky": "^8.0.0",
"unbuild": "^1.2.1",
"vitest": "^0.33.0"
}
}