-
-
Notifications
You must be signed in to change notification settings - Fork 450
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-design-editor",
"version": "0.2.0",
"description": "Design Editor Tools with React.js + ant.design + fabric.js",
"main": "dist/react-design-editor.cjs.js",
"module": "dist/react-design-editor.es.js",
"style": "dist/react-design-editor.css",
"unpkg": "dist/react-design-editor.umd.js",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/react-design-editor.es.js",
"require": "./dist/react-design-editor.cjs.js",
"default": "./dist/react-design-editor.es.js"
},
"./react-design-editor.css": "./dist/react-design-editor.css"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:unit": "vitest run",
"build": "npm run clean && npm run build:demo && npm run build:lib && typedoc",
"build:demo": "vite build",
"build:lib": "vite build --mode lib && tsc --project tsconfig.build.json",
"build:types": "tsc --project tsconfig.build.json",
"typecheck": "tsc --project tsconfig.json",
"start": "npm run start:dev",
"start:dev": "vite --host localhost --port 4000",
"dev": "vite --host localhost --port 4000",
"serve": "vite preview --host localhost --port 4001",
"ghpages": "npm run build && node scripts/ghpages",
"deploy": "npm run build:lib && npm publish",
"lint": "npm run tsc",
"clean": "node scripts/clean",
"tsc": "tsc --project tsconfig.build.json",
"typedoc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salgum1114/react-design-editor.git"
},
"keywords": [
"React.js",
"ant.design",
"fabric",
"react-design-editor",
"design-tool"
],
"author": "salgum1114",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/salgum1114/react-design-editor/issues"
},
"homepage": "https://salgum1114.github.io/react-design-editor",
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@monaco-editor/react": "^4.7.0",
"animejs": "^3.0.0",
"color": "^3.1.2",
"echarts": "^4.7.0",
"elkjs": "^0.10.0",
"fabric": "^7.4.0",
"gifler": "^0.1.0",
"honeycomb-grid": "^3.1.7",
"lodash-es": "^4.17.23",
"mediaelement": "^4.2.9",
"monaco-editor": "^0.56.0",
"resize-observer-polyfill": "^1.5.1",
"svg-path-properties": "^1.3.0",
"uuid": "^11.1.0",
"warning": "^4.0.3"
},
"devDependencies": {
"@ant-design/icons": "^6.1.0",
"@types/animejs": "^3.1.0",
"@types/color": "^3.0.1",
"@types/echarts": "^4.4.6",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@types/uuid": "^7.0.2",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vitejs/plugin-react": "^6.0.1",
"ajv": "^8.17.1",
"antd": "^6.0.0",
"clsx": "^2.1.1",
"core-js": "^3.19.1",
"del": "^5.1.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^5.2.0",
"fs-extra": "^9.0.0",
"gh-pages": "^2.2.0",
"http-server": "^14.1.0",
"i18next": "^19.0.0",
"i18next-browser-languagedetector": "^2.2.4",
"path": "^0.12.7",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-helmet-async": "^3.0.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.1.10"
}
}