-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.43 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.43 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
{
"name": "@yunti/react-markdown-lowcode-materials",
"version": "0.1.0",
"description": "markdown",
"files": [
"demo/",
"es/",
"lib/",
"build/",
"dist/",
"lowcode/",
"lowcode_lib/",
"lowcode_es/"
],
"main": "lib/index.js",
"module": "es/index.js",
"exports": {
"./*": "./*",
".": {
"import": "./es/index.js",
"require": "./lib/index.js"
}
},
"stylePath": "style.js",
"scripts": {
"start": "build-scripts start",
"build": "build-scripts build",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"test": "build-scripts test",
"prepublishOnly": "npm run build && npm run lowcode: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",
"f2elint-fix": "f2elint fix"
},
"keywords": [
"ice",
"react",
"component"
],
"dependencies": {
"moment": "^2.29.4",
"@alifd/next": "^1.25.27",
"react": "^16.x",
"react-dom": "^16.x",
"react-markdown": "^9.0.0"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.3",
"@alifd/build-plugin-lowcode": "^0.4.0",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"build-plugin-fusion": "^0.1.0",
"build-plugin-component": "^1.0.0",
"template-component-demo": "^2.0.3",
"build-plugin-moment-locales": "^0.1.0",
"f2elint": "^1.2.0"
},
"peerDependencies": {
"moment": "latest",
"react": "^16.x",
"react-dom": "^16.x"
},
"componentConfig": {
"name": "ExampleComponent",
"title": "demo component",
"category": "Information"
},
"lcMeta": {
"type": "component"
},
"license": "MIT",
"yunti": {
"umd": {
"library": "YuntiReactMarkdownLowcodeMaterials",
"entry": [
"/dist/YuntiReactMarkdownLowcodeMaterials.js",
"/dist/YuntiReactMarkdownLowcodeMaterials.css"
],
"externals": {
"antd": ">=5.4.0",
"dayjs": ">=1.8.27",
"@ant-design/icons": ">=4.7.0",
"react": ">=16.9.0",
"lodash": ">=4.17.21"
}
},
"lowCode": {
"meta": "/build/lowcode/meta.js",
"editEntry": [
"/build/lowcode/view.css",
"/build/lowcode/view.js"
]
}
}
}