-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "@itpropro/tree-structure-ts",
"version": "0.5.8",
"type": "module",
"packageManager": "bun@1.3.9",
"homepage": "https://github.com/itpropro/tree-structure-ts#readme",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "oxlint --type-aware .",
"lint:fix": "oxlint --type-aware --fix .",
"format": "oxfmt --write src test",
"format:check": "oxfmt --check src test",
"bench:perf": "bun run benchmark/perf.ts",
"bench:perf:huge": "PERF_INCLUDE_HUGE=1 bun run benchmark/perf.ts",
"bench:huge": "bun run benchmark/huge-tree.ts",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"bump": "changelogen --bump --release --no-output",
"readme:generate": "bun run scripts/generate-readme.mjs",
"docs": "bun run readme:generate && typedoc --plugin typedoc-plugin-markdown --readme README.md --out docs --githubPages false src/index.ts"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"changelogen": "^0.6.2",
"mdbox": "^0.1.1",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"oxlint-tsgolint": "^0.13.0",
"tinybench": "^6.0.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.18"
}
}