-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "@kiwilan/filesystem",
"type": "module",
"version": "0.0.20",
"description": "Node module to improve native filesystem with Laravel like helpers.",
"author": "Ewilan Rivière <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/kiwilan/node-filesystem",
"repository": {
"type": "git",
"url": "git+https://github.com/kiwilan/node-filesystem.git"
},
"bugs": {
"url": "https://github.com/kiwilan/node-filesystem/issues"
},
"keywords": [
"node",
"filesystem",
"fs",
"typescript"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"dist": "dist"
},
"scripts": {
"build": "tsup --clean",
"watch": "tsup --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "rm -f ./*.tgz ; rm -f ~/kiwilan-filesystem-*.tgz ; pnpm build ; pnpm pack ; cp kiwilan-filesystem-*.tgz ~/kiwilan-filesystem-*.tgz",
"release": "pnpm package ; pnpm publish --access public",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"glob": "^10.1.0",
"md5": "^2.3.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@types/md5": "^2.3.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.15.11",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.38.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}