-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "relatives-tree",
"version": "3.2.1",
"description": "Calculates families and nodes positions for rendering a family tree",
"main": "lib/index.js",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"benchmarks": "tsc --project ./benchmarks/tsconfig.json && node ./benchmarks/index.js",
"start": "vite",
"build": "tsc",
"size": "size-limit",
"test": "uvu -r tsm __tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/relatives-tree.git"
},
"bugs": {
"url": "https://github.com/SanichKotikov/relatives-tree/issues"
},
"homepage": "https://github.com/SanichKotikov/relatives-tree",
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib",
"src",
"samples"
],
"keywords": [
"family-tree",
"family",
"relatives",
"node",
"connection"
],
"devDependencies": {
"@size-limit/preset-small-lib": "11.1.4",
"benchmark": "2.1.4",
"prettier": "3.3.2",
"size-limit": "11.1.4",
"tsm": "2.3.0",
"typescript": "5.5.3",
"uvu": "0.5.6",
"vite": "5.3.3"
},
"size-limit": [
{
"path": "lib/index.js"
}
]
}