-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.21 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
{
"name": "@kne/modules-dev",
"version": "2.4.3",
"description": "用于辅助在项目内启动一个规范化组件开发的环境",
"publishConfig": {
"access": "public",
"source": "src/index.js",
"main": "dist/create-entry.js"
},
"syntax": {
"esmodules": true
},
"main": "index.js",
"bin": {
"modules-dev-create": "lib/init-module.js",
"modules-dev-libs-init": "lib/init-libs-example.js"
},
"files": [
"dist",
"lib",
"template",
"template-libs-example",
"index.js"
],
"scripts": {
"build:md": "create-md",
"start:md": "create-md --watch",
"build:lib": "microbundle --no-compress --format modern,cjs --jsxImportSource react --jsx React.createElement --jsxFragment React.Fragment",
"example": "node lib/init-libs-example.js",
"test": "mocha test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kne-union/modules-dev.git"
},
"keywords": [],
"author": "linzp",
"license": "ISC",
"dependencies": {
"@kne/apply-template": "^1.0.1",
"@kne/camel-case": "^0.1.1",
"@kne/craco-module-federation": "^1.1.9",
"@kne/ensure-slash": "^0.1.0",
"@kne/example-driver": "^0.1.28",
"@kne/fetch-npm-package": "^0.1.4",
"@kne/md-doc": "^0.1.23",
"@kne/react-fetch": "^1.4.3",
"@kne/react-icon": "^0.1.4",
"ajv": "^8.18.0",
"chokidar": "^3.5.3",
"classnames": "^2.3.2",
"commander": "^12.1.0",
"cross-spawn-promise": "^0.10.2",
"fs-extra": "^11.1.0",
"highlight.js": "^11.7.0",
"inquirer": "^8.2.4",
"lodash": "^4.17.21",
"sass": "^1.75.0",
"webpack-virtual-modules": "^0.5.0"
},
"peerDependencies": {
"@kne/craco": ">=7.0.0",
"@kne/react-scripts": ">=5",
"@kne/remote-loader": "*",
"antd": ">=5",
"loader-utils": "*",
"react": ">=18",
"react-router-dom": ">=6.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@kne/craco": "^7.1.2",
"@kne/microbundle": "^0.15.4",
"chai": "^6.2.2",
"mocha": "^11.7.5"
}
}