-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.71 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
{
"name": "@tinysystems/editor",
"version": "0.1.0",
"description": "The Tiny Systems flow editor as a reusable Vue library — same canvas, inspector, widgets and traces whether it runs in the hosted platform or the local tiny CLI.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/tiny-systems/editor.git"
},
"files": [
"dist",
"src"
],
"main": "./dist/editor.js",
"module": "./dist/editor.js",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/editor.js"
},
"./source": {
"import": "./src/index.ts"
},
"./style.css": "./dist/editor.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"prepare": "vite build"
},
"peerDependencies": {
"pinia": "^2.1.0 || ^3.0.0",
"vue": "^3.4.0"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@dagrejs/dagre": "^1.1.4",
"@guolao/vue-monaco-editor": "^1.6.0",
"@headlessui/vue": "^1.7.17",
"@heroicons/vue": "^2.1.5",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.42.1",
"@vue-flow/minimap": "^1.5.2",
"@vueuse/core": "^13.0.0",
"echarts": "^6.0.0",
"gridstack": "^12.4.2",
"js-base64": "^3.7.0",
"lodash-es": "^4.17.21",
"notiwind": "^2.1.0",
"vue-debounce": "^5.0.1",
"vue-echarts": "^8.0.1",
"vue-json-pretty": "^2.4.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@vitejs/plugin-vue": "^5.2.1",
"pinia": "^2.1.7",
"typescript": "^5.6.0",
"vite": "^6.0.7",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
}
}