-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "@patricksurry/g3",
"version": "0.1.19",
"author": "Patrick Surry <patrick.surry@gmail.com>",
"description": "A flexible Javascript framework for building steam gauge instrument panels that display live external metrics from flight (or other) simulators like XPlane or MS FS2020",
"keywords": [
"G3",
"D3",
"SVG",
"flight",
"simulator",
"gauges",
"instruments",
"control panel",
"metrics",
"telemetry",
"dashboard",
"visualization",
"dataviz",
"XPlane",
"FS2020"
],
"license": "ISC",
"type": "module",
"engines": {
"node": "^22.12.0"
},
"homepage": "https://github.com/patricksurry/g3",
"repository": {
"type": "git",
"url": "https://github.com/patricksurry/g3.git"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:render": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPatterns=tests/contrib.render.test.js --testPathIgnorePatterns=node_modules",
"build": "rollup -c",
"start": "vite"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"convert-units": "^3.0.0-beta.3",
"d3": "^7.9.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"d3-node": "^4.0.1",
"eslint": "^8.9.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"puppeteer": "^24.0.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"sharp": "^0.33.0",
"vite": "^7.0.0"
}
}