-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "@thingsinc/treejs",
"version": "0.2.5",
"description": "Simple Model for manipulating tree structure.",
"keywords": [
"tree",
"treemodel",
"javascript",
"node",
"hierarchy",
"structure"
],
"license": "MIT",
"author": "Yuki Shimizu",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"package.json",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "rm -rf dist && bun run build:cjs && bun run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"check": "bun run typecheck && biome check ./src",
"check:fix": "biome check ./src",
"format": "biome format ./src --write",
"lint": "biome lint ./src",
"lint:fix": "biome lint --apply-unsafe ./src",
"release": "np --no-tests",
"typecheck": "bun run typecheck:esm && bun run typecheck:cjs",
"typecheck:cjs": "tsc --pretty --noEmit -p tsconfig.cjs.json",
"typecheck:esm": "tsc --pretty --noEmit -p tsconfig.esm.json"
},
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@types/bun": "^1.0.12",
"@types/uuid": "^9.0.8",
"lefthook": "^1.6.8",
"np": "^10.0.2",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.4"
},
"publishConfig": {
"access": "public"
}
}