hfyzkj-sdk 1.0.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/README.md ADDED
@@ -0,0 +1,14 @@
1
+
2
+ # 云诊科技 JavaScript SDK
3
+
4
+ ## 使用
5
+ ```
6
+ npm install hfyzkj-sdk
7
+ ```
8
+
9
+
10
+ ## 版本记录
11
+
12
+ **V1.0.1** - 2025-01-25
13
+
14
+ >1.搭建基本框架
@@ -0,0 +1 @@
1
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var o=t();for(var r in o)("object"==typeof exports?exports:e)[r]=o[r]}}(this,(()=>(()=>{var e={237:(e,t,o)=>{e.exports=o(235)},235:(e,t,o)=>{const r=o.g.Yzkj||{};r.Init=()=>"Hello yzkj",window.Yzkj=r,e.exports=r}},t={};function o(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,o),i.exports}return o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o(237)})()));
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./src/lib/app')
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "hfyzkj-sdk",
3
+ "version": "1.0.1",
4
+ "description": "云诊科技 JavaScript SDK",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "dev": "webpack-dev-server --config config/dev.env.js",
9
+ "build": "webpack --mode production --config config/prod.env.js",
10
+ "watch": "webpack --mode development --watch"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "author": "zhengjx",
16
+ "license": "ISC",
17
+ "devDependencies": {
18
+ "terser-webpack-plugin": "^5.3.9",
19
+ "webpack": "^5.89.0",
20
+ "webpack-cli": "^5.1.4"
21
+ }
22
+ }