-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 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
{
"name": "library-template",
"version": "0.0.0",
"description": "",
"keywords": [],
"author": "YOUR_NAME_HERE",
"repository": "foxkit-js/library-template",
"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"
],
"publishConfig": {
"access": "public"
},
"private": false,
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.2",
"esbuild": "^0.25.11",
"esbuild-register": "^3.6.0",
"eslint": "^9.38.0",
"eslint-config-foxkit": "5.4.1",
"eslint-config-prettier": "^10.1.8",
"nano-staged": "^0.8.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"typescript": "5.9.3",
"uvu": "^0.5.6"
}
}