forked from alibaba/lowcode-engine-ext
-
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.2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.2 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": "@felce/lowcode-engine-ext",
"version": "1.2.2",
"description": "低代码官方提供的扩展集 - Official extension set provided by lowcode-engine",
"files": [
"dist"
],
"main": "dist/engine-ext.umd.js",
"module": "dist/engine-ext.es.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"prepublishOnly": "pnpm run build",
"eslint": "eslint --cache --ext .js,.jsx ./",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"**/*.{css,scss,less}\"",
"lint": "npm run eslint && npm run stylelint",
"f2elint-scan": "f2elint scan -q",
"f2elint-fix": "f2elint fix"
},
"keywords": [
"lowcode",
"react",
"ext"
],
"dependencies": {
"@alifd/next": "^1.27.30",
"@felce/lowcode-plugin-base-monaco-editor": "latest",
"@felce/lowcode-editor-skeleton": "latest",
"@felce/lowcode-engine": "latest",
"@felce/lowcode-types": "latest",
"@felce/lowcode-utils": "latest",
"@felce/lowcode-designer": "latest",
"classnames": "^2.5.1",
"cssjson": "^2.1.3",
"js-beautify": "^1.15.1",
"react": "^18.3.1",
"react-color": "^2.19.3",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/react": "^18.3.12",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.3.1",
"@types/js-beautify": "^1.14.3",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/ui": "2.1.8",
"f2elint": "^4.9.1",
"jsdom": "^25.0.1",
"less": "^4.2.1",
"sass-embedded": "^1.83.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8",
"vite-plugin-external": "^4.3.1"
},
"peerDependencies": {
"@alifd/next": "1.x",
"react": "^18"
},
"componentConfig": {
"name": "lowcode-engine-ext",
"title": "官方提供的扩展集",
"category": "lowcode"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"homepage": "https://unpkg.com/@felce/lowcode-engine-ext@1.2.0/build/index.html",
"repository": "git@github.com:fe-lce/lowcode-engine-ext.git"
}