-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "cognot-flow-editor",
"version": "1.0.0",
"description": "A powerful flow editor for building and executing workflows",
"main": "dist/cognot-flow-editor.umd.js",
"module": "dist/cognot-flow-editor.es.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/cognot-flow-editor.es.js",
"require": "./dist/cognot-flow-editor.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"vite": "^5.0.8"
},
"keywords": ["react", "flow", "editor", "workflow", "visual-programming"],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CognotEngine/CognotFlowEditor.git"
},
"homepage": "https://github.com/CognotEngine/CognotFlowEditor#readme"
}