-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "tree-factory",
"version": "3.0.0",
"description": "Powerful functions for various tree operations.",
"keywords": [
"node",
"browser",
"library",
"tree",
"util"
],
"license": "MIT",
"author": {
"name": "lisnote",
"email": "[email protected]",
"url": "https://github.com/lisnote"
},
"homepage": "https://github.com/lisnote/tree-factory",
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"test": "vitest --typecheck",
"build": "vite build",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier --write \"./**/*.ts\" --ignore-path .gitignore",
"lint:eslint": "eslint \"./**/{\\.*,*}.ts\" --fix --ignore-path .gitignore",
"prepare": "husky install",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "~8.26.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"lodash-es": "^4.17.21",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.0",
"vitest": "1.1.3"
},
"packageManager": "[email protected]"
}