@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 ADDED
@@ -0,0 +1,14 @@
1
+ # 版本变更日志
2
+
3
+ 这个项目的所有关键变化都将记录在此文件中.
4
+
5
+ 此日志格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),
6
+ 并且此项目遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.0.1] - 2025-01-07
11
+
12
+ ### Added
13
+
14
+ - 初始化项目.
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
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ function run() {
3
+ console.log("Hello World!");
4
+ }
5
+
6
+ export { run };
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
+ }