fuxi-topology 0.2.8 → 0.4.8

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.
Files changed (1) hide show
  1. package/package.json +64 -58
package/package.json CHANGED
@@ -1,58 +1,64 @@
1
- {
2
- "name": "fuxi-topology",
3
- "version": "0.2.8",
4
- "description": "A topology visualization library based on PixiJS",
5
- "type": "module",
6
- "main": "./dist/fuxi-topology.umd.cjs",
7
- "module": "./dist/fuxi-topology.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/fuxi-topology.js",
13
- "require": "./dist/fuxi-topology.umd.cjs"
14
- }
15
- },
16
- "files": [
17
- "dist"
18
- ],
19
- "scripts": {
20
- "dev": "vite",
21
- "dev:docs": "vitepress dev docs",
22
- "build:docs": "vitepress build docs",
23
- "build": "tsc && vite build"
24
- },
25
- "keywords": [
26
- "topology",
27
- "pixi",
28
- "visualization"
29
- ],
30
- "license": "MIT",
31
- "devDependencies": {
32
- "@lando/vitepress-theme-default-plus": "^1.1.1",
33
- "@tailwindcss/vite": "^4.2.0",
34
- "@types/d3-selection": "^3.0.11",
35
- "@types/d3-transition": "^3.0.9",
36
- "@types/d3-zoom": "^3.0.8",
37
- "@types/js-yaml": "^4.0.9",
38
- "@types/markdown-it-container": "^4.0.0",
39
- "@types/node": "^25.3.0",
40
- "@types/pathfinding": "^0.1.0",
41
- "markdown-it-container": "^4.0.0",
42
- "sharp": "^0.34.5",
43
- "tailwindcss": "^4.2.0",
44
- "typescript": "^5.7.0",
45
- "unplugin-vue-components": "^31.0.0",
46
- "vite": "^7.3.1",
47
- "vite-plugin-dts": "^4.5.0",
48
- "vitepress": "^1.6.4"
49
- },
50
- "dependencies": {
51
- "d3-selection": "^3.0.0",
52
- "d3-transition": "^3.0.1",
53
- "d3-zoom": "^3.0.0",
54
- "js-yaml": "^4.1.1",
55
- "pathfinding": "^0.4.18",
56
- "pixi.js": "^8.16.0"
57
- }
58
- }
1
+ {
2
+ "name": "fuxi-topology",
3
+ "version": "0.4.8",
4
+ "description": "A topology visualization library based on PixiJS",
5
+ "type": "module",
6
+ "main": "./dist/fuxi-topology.umd.cjs",
7
+ "module": "./dist/fuxi-topology.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/fuxi-topology.js",
13
+ "require": "./dist/fuxi-topology.umd.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "dev:docs": "vitepress dev docs",
22
+ "build:docs": "vitepress build docs",
23
+ "build": "tsc && vite build",
24
+ "test": "vitest run",
25
+ "test:watch": "vitest"
26
+ },
27
+ "keywords": [
28
+ "topology",
29
+ "pixi",
30
+ "visualization"
31
+ ],
32
+ "license": "MIT",
33
+ "devDependencies": {
34
+ "@lando/vitepress-theme-default-plus": "^1.1.1",
35
+ "@tailwindcss/vite": "^4.2.0",
36
+ "@types/d3-selection": "^3.0.11",
37
+ "@types/d3-transition": "^3.0.9",
38
+ "@types/d3-zoom": "^3.0.8",
39
+ "@types/js-yaml": "^4.0.9",
40
+ "@types/markdown-it-container": "^4.0.0",
41
+ "@types/node": "^25.3.0",
42
+ "@types/pathfinding": "^0.1.0",
43
+ "@vitest/ui": "^3.0.0",
44
+ "jsdom": "^29.1.1",
45
+ "markdown-it-container": "^4.0.0",
46
+ "sharp": "^0.34.5",
47
+ "tailwindcss": "^4.2.0",
48
+ "typescript": "^5.7.0",
49
+ "unplugin-vue-components": "^31.0.0",
50
+ "vite": "^7.3.1",
51
+ "vite-plugin-dts": "^4.5.0",
52
+ "vitepress": "^1.6.4",
53
+ "vitest": "^3.0.0"
54
+ },
55
+ "dependencies": {
56
+ "d3-selection": "^3.0.0",
57
+ "d3-transition": "^3.0.1",
58
+ "d3-zoom": "^3.0.0",
59
+ "js-yaml": "^4.1.1",
60
+ "mermaid": "^11.15.0",
61
+ "pathfinding": "^0.4.18",
62
+ "pixi.js": "^8.16.0"
63
+ }
64
+ }