-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
{
"name": "@google/graph-renderer",
"version": "1.0.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",
"files": [
"dist"
],
"main": "./dist/graph-renderer.js",
"module": "./dist/graph-renderer.js",
"types": "./dist/graph_renderer.d.ts",
"exports": {
".": {
"types": "./dist/graph_renderer.d.ts",
"import": "./dist/graph-renderer.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build --outDir dist-demo",
"build:lib": "vite build --mode plugin",
"preview": "vite preview --outDir dist-demo",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"lint": "gts lint",
"fix": "gts fix",
"clean": "gts clean"
},
"peerDependencies": {
"elkjs": "^0.9.0",
"lit": "^3.0.0",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@types/node": "^25.5.2",
"@vitest/ui": "^3.2.4",
"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"
}
}