-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.57 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.57 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@foxkit/fs",
"version": "0.1.2",
"description": "Filesystem Helpers with full TypeScript support for Node.js",
"keywords": [
"filesystem",
"read",
"write",
"IO",
"helpers"
],
"author": "Mitsunee",
"repository": "foxkit-js/fs",
"license": "MIT",
"private": true,
"type": "module",
"main": "src/index.ts",
"scripts": {
"prepare": "simple-git-hooks",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "eslint .",
"lint:strict": "eslint --max-warnings 0 .",
"typecheck": "tsc",
"test": "uvu -r esbuild-register tests -i utils",
"build": "node build.js && tsc -p tsconfig.build.json"
},
"nano-staged": {
"**/*.{js,cjs,mjs,ts,mts,cts,json,md,yaml}": [
"prettier -w"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"files": [
"*.d.ts",
"index.*"
],
"publishConfig": {
"removeFields": [
"scripts",
"nano-staged",
"simple-git-hooks",
"main"
],
"publishConfig": {
"access": "public"
},
"private": false,
"main": "index.js",
"types": "index.d.ts"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^22.14.0",
"esbuild": "^0.25.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.24.0",
"eslint-config-foxkit": "5.2.1",
"eslint-config-prettier": "^10.1.2",
"nano-staged": "^0.8.0",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.12.1",
"typescript": "5.8.3",
"uvu": "^0.5.6"
},
"peerDependencies": {
"@types/node": ">=10"
}
}