generated from foxkit-js/library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
{
"name": "@foxkit/list",
"version": "2.1.0",
"description": "Doubly-linked List class",
"keywords": [
"list",
"datastructure",
"linked list",
"object",
"class"
],
"author": "Mitsunee",
"repository": "foxkit-js/list",
"license": "MIT",
"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,json,md,yaml}": [
"prettier -w"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"files": [
"docs",
"*.d.ts",
"index.*"
],
"publishConfig": {
"removeFields": [
"scripts",
"nano-staged",
"simple-git-hooks"
],
"access": "public",
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts"
},
"devDependencies": {
"@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"
}
}