-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 KB
/
package.json
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
{
"name": "antd-mobile-lowcode-materials",
"version": "0.3.1",
"description": "Low-code Materials based on Antd Mobile",
"license": "MIT",
"author": "Kyrix",
"exports": {
"./*": "./*",
".": {
"import": "./es/index.js",
"require": "./lib/index.js"
},
"./prototype": {
"require": "./lowcode_lib/meta.js",
"import": "./lowcode_es/meta.js"
},
"./prototypeView": {
"require": "./lowcode_lib/view.js",
"import": "./lowcode_es/view.js"
}
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "types/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"build/",
"lowcode_lib/",
"lowcode_es/"
],
"scripts": {
"dev": "build-scripts start --config ./build.lowcode.js",
"start": "npm run dumi",
"build": "build-scripts build",
"dumi": "cross-env APP_ROOT=docs dumi dev",
"dumi:build": "cross-env APP_ROOT=docs dumi build",
"f2elint-fix": "f2elint fix",
"f2elint-scan": "f2elint scan",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"prepublishOnly": "npm run build && npm run lowcode:build && npm run dumi:build"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": "f2elint exec eslint",
"**/*.{css,scss,less,acss}": "f2elint exec stylelint"
},
"dependencies": {
"@alifd/next": "^1.27.1",
"@babel/runtime": "^7.23.8",
"antd-mobile": "5.32.0",
"antd-mobile-icons": "^0.3.0",
"moment": "^2.30.1",
"pinyin": "^2.11.2",
"rc-table": "^7.36.1",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.32",
"@alifd/build-plugin-lowcode": "^0.4.7",
"@alifd/theme-2": "^0.4.4",
"@alilc/build-plugin-alt": "^1.3.4",
"@types/pinyin": "^2.10.2",
"@types/react": "^16.14.55",
"@types/react-dom": "^16.9.24",
"@umijs/plugin-sass": "^1.1.1",
"build-plugin-component": "^1.12.2",
"build-plugin-fusion": "^0.1.23",
"cross-env": "^7.0.3",
"dumi": "^1.1.54",
"dumi-theme-default": "^1.1.24",
"f2elint": "^1.2.3"
},
"componentConfig": {
"isComponentLibrary": true,
"materialSchema": "https://unpkg.com/[email protected]/build/lowcode/assets-prod.json"
},
"lcMeta": {
"type": "component"
},
"homepage": "https://unpkg.com/[email protected]/build/index.html"
}