@gct-paas/core 0.0.1-dev.0
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/CHANGELOG.md +14 -0
- package/README.md +1 -0
- package/dist/core.cjs +1 -0
- package/dist/core.system.js +1 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +6 -0
- package/package.json +53 -0
package/CHANGELOG.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/dist/core.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function o(){console.log("Hello World!")}exports.run=o;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register([],function(e,o){"use strict";return{execute:function(){e("run",n);function n(){console.log("Hello World!")}}}});
|
package/es/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function run(): void;
|
package/es/index.mjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gct-paas/core",
|
|
3
|
+
"version": "0.0.1-dev.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "paas 平台核心包",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "es/index.mjs",
|
|
8
|
+
"types": "es/index.d.ts",
|
|
9
|
+
"system": "dist/core.system.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./es/index.d.ts",
|
|
13
|
+
"import": "./es/index.mjs",
|
|
14
|
+
"require": "./dist/index.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"es",
|
|
20
|
+
"lib",
|
|
21
|
+
"CHANGELOG.md",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"keywords": [
|
|
25
|
+
"paas",
|
|
26
|
+
"gct"
|
|
27
|
+
],
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://git.gct-china.com/paas/frontend/paas-package.git"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"author": "gct",
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "rollup -c -w --environment=NODE_ENV:development",
|
|
36
|
+
"build": "npm run lint && rollup -c --environment=NODE_ENV:production && vite build --mode production --config vite.config.ts",
|
|
37
|
+
"lint": "eslint src/",
|
|
38
|
+
"publish:next": "npm run build && npm publish --access public --tag=next --registry=https://registry.npmjs.org/",
|
|
39
|
+
"publish:dev": "npm run build && npm publish --access public --tag=dev --registry=https://registry.npmjs.org/",
|
|
40
|
+
"publish:alpha": "npm run build && npm publish --access public --tag=alpha --registry=https://registry.npmjs.org/",
|
|
41
|
+
"publish:beta": "npm run build && npm publish --access public --tag=beta --registry=https://registry.npmjs.org/",
|
|
42
|
+
"publish:npm": "npm run build && npm publish --access public --registry=https://registry.npmjs.org/"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"vue": "^3.5.13"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@gct-paas/cli": "0.0.1-dev.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"vue":"^3.x"
|
|
52
|
+
}
|
|
53
|
+
}
|