quixotic-gol 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +424 -0
- package/dist/assets/graphvizWorker-Bbv8iQW7.js +2402 -0
- package/dist/index.d.ts +260 -0
- package/dist/index.js +81 -0
- package/dist/index.mjs +3680 -0
- package/dist/worker.d.ts +1 -0
- package/dist/worker.js +13 -0
- package/dist/worker.mjs +2402 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "quixotic-gol",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./worker": {
|
|
15
|
+
"types": "./dist/worker.d.ts",
|
|
16
|
+
"import": "./dist/worker.mjs",
|
|
17
|
+
"require": "./dist/worker.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "next dev",
|
|
26
|
+
"build": "pnpm run build:lib && next build",
|
|
27
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
28
|
+
"build:next": "next build",
|
|
29
|
+
"prepublishOnly": "pnpm run build:lib",
|
|
30
|
+
"start": "next start",
|
|
31
|
+
"lint": "eslint",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"test:coverage": "vitest run --coverage",
|
|
35
|
+
"pub": "rm -rf dist && pnpm build:lib && npm publish"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
39
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@hpcc-js/wasm-graphviz": "^1.6.1",
|
|
43
|
+
"d3": "^7.9.0",
|
|
44
|
+
"nuqs": "^2.8.6"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@tailwindcss/postcss": "^4",
|
|
48
|
+
"@testing-library/dom": "^10.4.1",
|
|
49
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
50
|
+
"@testing-library/react": "^16.3.1",
|
|
51
|
+
"@types/d3": "^7.4.3",
|
|
52
|
+
"@types/lodash": "^4.17.23",
|
|
53
|
+
"@types/node": "^20",
|
|
54
|
+
"@types/react": "^19",
|
|
55
|
+
"@types/react-dom": "^19",
|
|
56
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
57
|
+
"babel-plugin-react-compiler": "1.0.0",
|
|
58
|
+
"bignumber.js": "^9.3.1",
|
|
59
|
+
"eslint": "^9",
|
|
60
|
+
"eslint-config-next": "16.1.3",
|
|
61
|
+
"fzstd": "^0.1.1",
|
|
62
|
+
"jsdom": "^27.4.0",
|
|
63
|
+
"lodash": "^4.17.23",
|
|
64
|
+
"next": "16.1.3",
|
|
65
|
+
"react": "19.2.3",
|
|
66
|
+
"react-dom": "19.2.3",
|
|
67
|
+
"tailwindcss": "^4",
|
|
68
|
+
"typescript": "^5",
|
|
69
|
+
"uint8arrays": "^5.1.0",
|
|
70
|
+
"vite": "^6.0.5",
|
|
71
|
+
"vite-plugin-dts": "^4.3.0",
|
|
72
|
+
"vitest": "^4.0.17"
|
|
73
|
+
},
|
|
74
|
+
"keywords": [
|
|
75
|
+
"graphviz",
|
|
76
|
+
"layout",
|
|
77
|
+
"react",
|
|
78
|
+
"worker",
|
|
79
|
+
"visualization",
|
|
80
|
+
"graph"
|
|
81
|
+
],
|
|
82
|
+
"repository": {
|
|
83
|
+
"type": "git",
|
|
84
|
+
"url": "https://github.com/zeiss/graphviz-layouter"
|
|
85
|
+
},
|
|
86
|
+
"license": "MIT"
|
|
87
|
+
}
|