-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
{
"name": "flow-forge",
"type": "module",
"version": "1.0.0",
"description": "",
"license": "MIT",
"keywords": [],
"main": "./src/index.ts",
"files": [
"src/",
".eslintrc.js",
".gitignore",
"index.html",
"package.json",
"rsbuild.config.ts",
"tsconfig.json",
"README.md",
"README.zh_CN.md"
],
"scripts": {
"build": "exit 0",
"build:fast": "exit 0",
"build:watch": "exit 0",
"build:prod": "cross-env MODE=app NODE_ENV=production rsbuild build",
"build:analyze": "BUNDLE_ANALYZE=true rsbuild build",
"clean": "rimraf dist",
"dev": "cross-env MODE=app NODE_ENV=development rsbuild dev --open",
"lint": "eslint ./src --cache",
"lint:fix": "eslint ./src --fix",
"ts-check": "tsc --noEmit",
"start": "cross-env NODE_ENV=development rsbuild dev --open",
"test": "exit",
"test:cov": "exit",
"watch": "exit 0"
},
"dependencies": {
"@douyinfe/semi-icons": "^2.80.0",
"@douyinfe/semi-ui": "^2.80.0",
"@flowgram.ai/form-materials": "1.0.2",
"@flowgram.ai/free-container-plugin": "1.0.2",
"@flowgram.ai/free-group-plugin": "1.0.2",
"@flowgram.ai/free-layout-editor": "1.0.2",
"@flowgram.ai/free-lines-plugin": "1.0.2",
"@flowgram.ai/free-node-panel-plugin": "1.0.2",
"@flowgram.ai/free-snap-plugin": "1.0.2",
"@flowgram.ai/free-stack-plugin": "1.0.2",
"@flowgram.ai/minimap-plugin": "1.0.2",
"@flowgram.ai/panel-manager-plugin": "1.0.2",
"@flowgram.ai/runtime-interface": "1.0.2",
"@flowgram.ai/runtime-js": "1.0.2",
"classnames": "^2.5.1",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"react": "^18",
"react-dom": "^18",
"styled-components": "^5"
},
"devDependencies": {
"@flowgram.ai/eslint-config": "1.0.2",
"@flowgram.ai/ts-config": "1.0.2",
"@rsbuild/core": "^1.2.16",
"@rsbuild/plugin-less": "^1.1.1",
"@rsbuild/plugin-react": "^1.1.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/styled-components": "^5",
"cross-env": "~7.0.3",
"eslint": "^8.54.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}