topo-engine 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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "topo-engine",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "配电台区单线图拓扑成图引擎 (Vue3 + G6 v5 + Node/Vite)",
7
+ "main": "./dist/topo-engine.umd.cjs",
8
+ "module": "./dist/topo-engine.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/topo-engine.js",
13
+ "require": "./dist/topo-engine.umd.cjs",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./style.css": "./dist/style.css"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "dev": "vite",
23
+ "build": "vite build && vite build --mode library",
24
+ "preview": "vite preview",
25
+ "build:lib": "vite build --mode library"
26
+ },
27
+ "dependencies": {
28
+ "@antv/g6": "^5.0.0",
29
+ "vue": "^3.4.0"
30
+ },
31
+ "devDependencies": {
32
+ "@vitejs/plugin-vue": "^5.0.0",
33
+ "vite": "^5.2.0",
34
+ "vite-plugin-dts": "^3.9.0"
35
+ },
36
+ "peerDependencies": {
37
+ "vue": "^3.4.0"
38
+ },
39
+ "keywords": [
40
+ "topology",
41
+ "graph",
42
+ "电力系统",
43
+ "配电网络",
44
+ "单线图",
45
+ "拓扑引擎",
46
+ "Vue3",
47
+ "G6"
48
+ ],
49
+ "author": "Topo Engine Team",
50
+ "license": "MIT"
51
+ }