-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "d3-flame-graph",
"version": "5.0.0",
"description": "A d3.js library to produce flame graphs.",
"files": [
"dist"
],
"main": "./dist/d3-flamegraph.umd.js",
"module": "./dist/d3-flamegraph.es.js",
"exports": {
".": {
"import": "./dist/d3-flamegraph.es.js",
"require": "./dist/d3-flamegraph.umd.js"
}
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "vite build --config vite.config.mjs && vite build --config vite.config.min.mjs",
"build:demo": "vite build --config vite.config.demo.mjs",
"dev": "vite",
"lint": "eslint lib src test",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiermar/d3-flame-graph.git"
},
"keywords": [
"d3",
"flamegraph",
"performance"
],
"author": "Martin Spier <spiermar@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spiermar/d3-flame-graph/issues"
},
"homepage": "https://github.com/spiermar/d3-flame-graph#readme",
"devDependencies": {
"eslint": "^9.39.3",
"jsdom": "^28.1.0",
"vite": "^7.3.1",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^4.0.18"
},
"dependencies": {
"d3-array": "^3.1.1",
"d3-dispatch": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-format": "^3.0.1",
"d3-hierarchy": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1"
}
}