-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
134 lines (134 loc) · 3.59 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
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
130
131
132
133
134
{
"name": "@alifd/layout",
"version": "2.4.1",
"description": "基于 Fusion 设计系统的自然布局体系",
"files": [
"demo/",
"es/",
"lib/",
"build/",
"dist/",
"lowcode_lib/",
"lowcode_es/"
],
"main": "lib/index.js",
"module": "es/index.js",
"lowcodeEditMain": "build/lowcode/view.js",
"author": {
"name": "lianmin",
"email": "[email protected]"
},
"contributors": [],
"scripts": {
"start": "build-scripts start",
"build": "build-scripts build",
"prepublishOnly": "npm run build && npm run lowcode:build",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"test": "build-scripts test",
"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",
"release": "standard-version",
"release:beta": "standard-version --release-as minor --prerelease beta"
},
"lint-staged": {
"@src/**/*.(ts|tsx)": [
"eslint --fix",
"prettier --write"
],
"src/**/*.(css|scss|less)": [
"stylelint --fix"
]
},
"standard-version": {
"skip": {
"commit": true
}
},
"keywords": [
"layout",
"fusion",
"ice",
"react",
"component"
],
"dependencies": {
"@alifd/next": "^1.x",
"@alilc/lowcode-engine": "^1.1.1",
"@alilc/lowcode-types": "^1.1.3-beta.1",
"classnames": "^2.3.2",
"is-valid-array": "^1.0.1",
"lodash-es": "^4.17.21",
"resize-observer-polyfill": "^1.5.1",
"typescript": "^4.9.5",
"@babel/runtime": "^7.0.0",
"react-draggable": "^4.4.4"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.32",
"@alifd/build-plugin-lowcode": "^0.4.6",
"@alifd/next": "1.x",
"@alifd/theme-3": "^0.5.3",
"@alilc/lowcode-types": "^1.1.3-beta.2",
"@iceworks/spec": "^1.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/lodash-es": "^4.17.6",
"@types/react": "^16.14.35",
"@types/react-dom": "^16.9.4",
"build-plugin-component": "^1.0.0",
"build-plugin-fusion": "^0.1.0",
"build-plugin-jsx-plus": "^0.1.4",
"build-plugin-moment-locales": "^0.1.0",
"commitlint": "^17.6.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"f2elint": "^1.2.0",
"iceworks": "^3.4.5",
"moment": "^2.29.4",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"@alifd/next": "1.x",
"react": ">=16"
},
"componentConfig": {
"name": "Layout",
"title": "自然布局",
"category": "Information",
"materialSchema": "https://unpkg.alibaba-inc.com/@alifd/[email protected]/build/lowcode/assets-prod.json"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"homepage": "https://unpkg.com/@alifd/[email protected]/build/index.html",
"bugs": "https://gitlab.alibaba-inc.com/fusion-design/layout/issues",
"repository": "https://github.com/alibaba-fusion/layout.git",
"resolutions": {
"sass": "1.35.x"
},
"exports": {
"./prototype": {
"require": "./lowcode_lib/meta_entry.js",
"import": "./lowcode_es/meta_entry.js"
},
"./prototypeView": {
"require": "./lowcode_lib/view_entry.js",
"import": "./lowcode_es/view_entry.js"
},
"./*": "./*",
".": {
"import": "./es/index.js",
"require": "./lib/index.js"
}
},
"lcMeta": {
"type": "component"
}
}