@giteeteam/apps-cli 0.7.2 → 0.8.1-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +613 -1
- package/dist/index.js.LEGAL.txt +124 -0
- package/package.json +34 -4
package/dist/index.js.LEGAL.txt
CHANGED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
Bundled license information:
|
|
2
|
+
|
|
3
|
+
classnames/index.js:
|
|
4
|
+
/*!
|
|
5
|
+
Copyright (c) 2018 Jed Watson.
|
|
6
|
+
Licensed under the MIT License (MIT), see
|
|
7
|
+
http://jedwatson.github.io/classnames
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
react/cjs/react.production.min.js:
|
|
11
|
+
/**
|
|
12
|
+
* @license React
|
|
13
|
+
* react.production.min.js
|
|
14
|
+
*
|
|
15
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
16
|
+
*
|
|
17
|
+
* This source code is licensed under the MIT license found in the
|
|
18
|
+
* LICENSE file in the root directory of this source tree.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
react/cjs/react.development.js:
|
|
22
|
+
/**
|
|
23
|
+
* @license React
|
|
24
|
+
* react.development.js
|
|
25
|
+
*
|
|
26
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
27
|
+
*
|
|
28
|
+
* This source code is licensed under the MIT license found in the
|
|
29
|
+
* LICENSE file in the root directory of this source tree.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
react-is/cjs/react-is.production.min.js:
|
|
33
|
+
/**
|
|
34
|
+
* @license React
|
|
35
|
+
* react-is.production.min.js
|
|
36
|
+
*
|
|
37
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
38
|
+
*
|
|
39
|
+
* This source code is licensed under the MIT license found in the
|
|
40
|
+
* LICENSE file in the root directory of this source tree.
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
react-is/cjs/react-is.development.js:
|
|
44
|
+
/**
|
|
45
|
+
* @license React
|
|
46
|
+
* react-is.development.js
|
|
47
|
+
*
|
|
48
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
49
|
+
*
|
|
50
|
+
* This source code is licensed under the MIT license found in the
|
|
51
|
+
* LICENSE file in the root directory of this source tree.
|
|
52
|
+
*/
|
|
53
|
+
|
|
54
|
+
scheduler/cjs/scheduler.production.min.js:
|
|
55
|
+
/**
|
|
56
|
+
* @license React
|
|
57
|
+
* scheduler.production.min.js
|
|
58
|
+
*
|
|
59
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
60
|
+
*
|
|
61
|
+
* This source code is licensed under the MIT license found in the
|
|
62
|
+
* LICENSE file in the root directory of this source tree.
|
|
63
|
+
*/
|
|
64
|
+
|
|
65
|
+
scheduler/cjs/scheduler.development.js:
|
|
66
|
+
/**
|
|
67
|
+
* @license React
|
|
68
|
+
* scheduler.development.js
|
|
69
|
+
*
|
|
70
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
71
|
+
*
|
|
72
|
+
* This source code is licensed under the MIT license found in the
|
|
73
|
+
* LICENSE file in the root directory of this source tree.
|
|
74
|
+
*/
|
|
75
|
+
|
|
76
|
+
react-dom/cjs/react-dom.production.min.js:
|
|
77
|
+
/**
|
|
78
|
+
* @license React
|
|
79
|
+
* react-dom.production.min.js
|
|
80
|
+
*
|
|
81
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
82
|
+
*
|
|
83
|
+
* This source code is licensed under the MIT license found in the
|
|
84
|
+
* LICENSE file in the root directory of this source tree.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
react-dom/cjs/react-dom.development.js:
|
|
88
|
+
/**
|
|
89
|
+
* @license React
|
|
90
|
+
* react-dom.development.js
|
|
91
|
+
*
|
|
92
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
93
|
+
*
|
|
94
|
+
* This source code is licensed under the MIT license found in the
|
|
95
|
+
* LICENSE file in the root directory of this source tree.
|
|
96
|
+
*/
|
|
97
|
+
/**
|
|
98
|
+
* Checks if an event is supported in the current execution environment.
|
|
99
|
+
*
|
|
100
|
+
* NOTE: This will not work correctly for non-generic events such as `change`,
|
|
101
|
+
* `reset`, `load`, `error`, and `select`.
|
|
102
|
+
*
|
|
103
|
+
* Borrows from Modernizr.
|
|
104
|
+
*
|
|
105
|
+
* @param {string} eventNameSuffix Event name, e.g. "click".
|
|
106
|
+
* @return {boolean} True if the event is supported.
|
|
107
|
+
* @internal
|
|
108
|
+
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
|
109
|
+
*/
|
|
110
|
+
|
|
111
|
+
@babel/runtime/helpers/regeneratorRuntime.js:
|
|
112
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
113
|
+
|
|
114
|
+
qrcode.react/lib/index.js:
|
|
115
|
+
/**
|
|
116
|
+
* @license QR Code generator library (TypeScript)
|
|
117
|
+
* Copyright (c) Project Nayuki.
|
|
118
|
+
* SPDX-License-Identifier: MIT
|
|
119
|
+
*/
|
|
120
|
+
/**
|
|
121
|
+
* @license qrcode.react
|
|
122
|
+
* Copyright (c) Paul O'Shannessy
|
|
123
|
+
* SPDX-License-Identifier: ISC
|
|
124
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@giteeteam/apps-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1-alpha.1",
|
|
4
4
|
"description": "Giteeteam Apps cli",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"build": "rm -rf dist && etsc",
|
|
20
20
|
"prepublishOnly": "pnpm build",
|
|
21
21
|
"prepublish": "pnpm build",
|
|
22
|
+
"publish:alpha": "npm publish --tag alpha",
|
|
22
23
|
"prepack": "pnpm build",
|
|
23
24
|
"unlink": "yarn unlink",
|
|
24
25
|
"link": "chmod +x ./dist/index.js && yarn link && yarn link '@giteeteam/apps-cli' -g",
|
|
@@ -30,37 +31,66 @@
|
|
|
30
31
|
"registry": "https://registry.npmjs.org/"
|
|
31
32
|
},
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@
|
|
34
|
+
"@ant-design/compatible": "^5.1.2",
|
|
35
|
+
"@ecomfe/class-names-loader": "^2.0.0",
|
|
36
|
+
"@giteeteam/apps-manifest": "0.8.0",
|
|
37
|
+
"@giteeteam/apps-team-theme": "^0.2.0",
|
|
38
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
|
|
34
39
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
40
|
+
"@svgr/webpack": "^8.1.0",
|
|
35
41
|
"archiver": "^5.3.1",
|
|
36
|
-
"
|
|
42
|
+
"autoprefixer": "^10.4.20",
|
|
43
|
+
"axios": "^1.5.0",
|
|
37
44
|
"base64url": "^3.0.1",
|
|
38
45
|
"chalk": "^4.1.2",
|
|
39
46
|
"chokidar": "^3.5.3",
|
|
47
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
40
48
|
"commander": "^11.1.0",
|
|
49
|
+
"cors": "^2.8.5",
|
|
50
|
+
"css-minimizer-webpack-plugin": "^4.2.2",
|
|
41
51
|
"debug": "^4.3.4",
|
|
42
52
|
"dotenv": "^16.3.1",
|
|
43
53
|
"esbuild": "^0.18.11",
|
|
44
54
|
"execa": "5.1.1",
|
|
55
|
+
"express": "4.18.3",
|
|
45
56
|
"form-data": "^4.0.0",
|
|
46
57
|
"fs-extra": "^11.1.1",
|
|
58
|
+
"hasha": "^5.2.2",
|
|
59
|
+
"html-webpack-plugin": "^5.5.3",
|
|
47
60
|
"inquirer": "^8.2.6",
|
|
61
|
+
"less": "^4.1.3",
|
|
62
|
+
"less-loader": "^10.1.0",
|
|
48
63
|
"localtunnel": "2.0.2",
|
|
49
64
|
"lowdb": "1.0.0",
|
|
65
|
+
"mini-css-extract-plugin": "^2.4.5",
|
|
50
66
|
"ora": "^5.4.1",
|
|
67
|
+
"postcss": "^8.4.24",
|
|
68
|
+
"postcss-loader": "^7.3.3",
|
|
51
69
|
"rollup": "^3.29.4",
|
|
52
|
-
"simple-git": "^3.19.1"
|
|
70
|
+
"simple-git": "^3.19.1",
|
|
71
|
+
"style-loader": "^3.3.3",
|
|
72
|
+
"swc-loader": "^0.2.6",
|
|
73
|
+
"url-loader": "^4.1.1",
|
|
74
|
+
"webpack": "^5.88.1",
|
|
75
|
+
"webpack-bundle-analyzer": "^4.9.0",
|
|
76
|
+
"webpack-dev-middleware": "^6.1.1"
|
|
53
77
|
},
|
|
54
78
|
"devDependencies": {
|
|
55
79
|
"@types/archiver": "^5.3.1",
|
|
80
|
+
"@types/cors": "^2.8.17",
|
|
56
81
|
"@types/debug": "^4.1.8",
|
|
82
|
+
"@types/express": "^4.17.17",
|
|
57
83
|
"@types/fs-extra": "^11.0.4",
|
|
58
84
|
"@types/inquirer": "^8.2.9",
|
|
59
85
|
"@types/localtunnel": "2.0.1",
|
|
60
86
|
"@types/lowdb": "1.0.11",
|
|
61
87
|
"esbuild-node-tsc": "^2.0.5",
|
|
88
|
+
"prettier": "^3.3.3",
|
|
62
89
|
"typescript": "^4.8.3"
|
|
63
90
|
},
|
|
91
|
+
"peerDependencies": {
|
|
92
|
+
"antd": ">=5.10.0"
|
|
93
|
+
},
|
|
64
94
|
"engines": {
|
|
65
95
|
"node": ">=16"
|
|
66
96
|
}
|