-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@google/graph-renderer",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/google/graph-renderer.git"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"type": "module",
"sideEffects": [
"*.css",
"./dist/graph-renderer.js",
"./dist/graph-renderer-elk.js",
"./public_api.ts",
"./public_api_elk.ts",
"./graph_renderer.ts",
"./directed_graph/directed_graph.ts",
"./edge_canvas/edge_canvas.ts",
"./edge_label_render/edge_label_render.ts",
"./minimap/minimap.ts",
"./node_render/node_render.ts"
],
"files": [
"dist"
],
"main": "./dist/graph-renderer.js",
"module": "./dist/graph-renderer.js",
"types": "./dist/public_api.d.ts",
"exports": {
".": {
"types": "./dist/public_api.d.ts",
"import": "./dist/graph-renderer.js"
},
"./elk": {
"types": "./dist/public_api_elk.d.ts",
"import": "./dist/graph-renderer-elk.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "vite build --outDir dist-demo",
"build:lib": "npm run build:lib:core && npm run build:lib:elk",
"build:lib:core": "cross-env LIB_ENTRY=core vite build --mode plugin",
"build:lib:elk": "cross-env LIB_ENTRY=elk vite build --mode plugin",
"preview": "vite preview --outDir dist-demo",
"typecheck": "tsc --noEmit",
"typecheck:smoke": "tsc --noEmit -p tsconfig.smoke.json",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"lint": "gts lint",
"fix": "gts fix",
"clean": "gts clean",
"prepublishOnly": "npm run typecheck && npm run test:run && npm run build:lib"
},
"peerDependencies": {
"elkjs": "^0.9.0",
"lit": "^3.0.0",
"rxjs": "^7.8.0"
},
"peerDependenciesMeta": {
"elkjs": {
"optional": true
}
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@types/node": "^25.5.2",
"@vitest/ui": "^3.2.4",
"cross-env": "^7.0.3",
"elkjs": "^0.9.0",
"jsdom": "^27.0.1",
"lit": "^3.0.0",
"rxjs": "^7.8.0",
"typescript": "~5.4.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lit-css": "^2.2.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4",
"gts": "^5.3.1",
"prettier": "^3.0.0",
"eslint": "^8.0.0"
}
}