-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 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
{
"name": "family-chart",
"version": "0.9.0",
"type": "module",
"description": "family tree creator and viewer",
"keywords": [
"datafull",
"family-chart",
"family tree",
"d3"
],
"homepage": "https://donatso.github.io/family-chart/",
"license": "ISC",
"author": {
"name": "donatso"
},
"main": "dist/family-chart.js",
"types": "dist/types/index.d.ts",
"unpkg": "dist/family-chart.min.js",
"module": "dist/family-chart.esm.js",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/family-chart.esm.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/family-chart.js"
}
},
"./styles/*": "./dist/styles/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donatso/family-chart.git"
},
"files": [
"dist/**/*.js",
"dist/styles/**",
"dist/types/**"
],
"scripts": {
"build": "node build.js",
"test": "cypress open",
"test-run": "cypress run",
"dev": "vite",
"docs": "typedoc",
"docs:deploy": "yarn docs && gh-pages -d docs/api -b gh-pages",
"prepublishOnly": "node prePublish.js"
},
"sideEffects": false,
"dependencies": {
"d3": "^7.9.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/d3": "^7.4.3",
"cypress": "15.2.0",
"gh-pages": "^6.3.0",
"http-server": "^14.1.1",
"rollup": "^4.45.1",
"typedoc": "^0.28.13",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}