-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"author": {
"email": "narukeu@outlook.com",
"name": "Luke Na",
"url": "https://narukeu.github.io"
},
"bugs": {
"url": "https://github.com/okutils/array-to-tree/issues"
},
"description": "A TypeScript utility to convert a flat array into a hierarchical tree via parent-child relationships.",
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@jest/globals": "^30.2.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.2.2",
"jest": "^30.2.0",
"rimraf": "^6.1.2",
"rollup": "^4.57.1",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-node-externals": "^8.1.2",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
},
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"files": [
"dist"
],
"homepage": "https://github.com/okutils/array-to-tree",
"keywords": [
"array",
"tree",
"typescript",
"utility"
],
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"name": "@okutils/array-to-tree",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okutils/array-to-tree.git"
},
"scripts": {
"build": "pnpm clean && rollup -c",
"clean": "rimraf dist",
"dev": "rollup -c -w",
"format": "biome format --write",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "jest",
"type-check": "tsc --noEmit"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"version": "0.0.6"
}