@atomm-developer/generator-sdk 1.0.3

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/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@atomm-developer/generator-sdk",
3
+ "version": "1.0.3",
4
+ "description": "Atomm Generator 开放平台 SDK,为第三方生成器开发者提供登录、云保存、历史记录、积分等平台能力",
5
+ "keywords": [
6
+ "atomm",
7
+ "generator",
8
+ "sdk"
9
+ ],
10
+ "license": "MIT",
11
+ "type": "module",
12
+ "main": "./dist/index.umd.js",
13
+ "module": "./dist/index.es.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.es.js",
19
+ "require": "./dist/index.umd.js"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "publishConfig": {
26
+ "registry": "https://registry.npmjs.org/",
27
+ "access": "public"
28
+ },
29
+ "scripts": {
30
+ "dev": "vite build --watch",
31
+ "dev:umd": "BUILD_TARGET=umd BUILD_ENV=development vite build --watch",
32
+ "demo": "npx serve .",
33
+ "build": "vite build && BUILD_TARGET=umd vite build && cp dist/index.umd.js docs/public/index.umd.js",
34
+ "build:esm": "vite build",
35
+ "build:umd": "BUILD_TARGET=umd vite build",
36
+ "type-check": "tsc --noEmit",
37
+ "docs:dev": "vitepress dev docs",
38
+ "docs:build": "vitepress build docs",
39
+ "docs:preview": "vitepress preview docs",
40
+ "deploy": "npm run build && npm run docs:build && npm publish"
41
+ },
42
+ "dependencies": {
43
+ "@makeblock/passport-client": "^4.0.19",
44
+ "@makeblock/upload": "^1.0.0",
45
+ "axios": "^1.7.9",
46
+ "uuid": "^11.1.0"
47
+ },
48
+ "devDependencies": {
49
+ "sass-embedded": "^1.98.0",
50
+ "terser": "^5.46.0",
51
+ "typescript": "^5.7.3",
52
+ "vite": "^6.2.4",
53
+ "vite-plugin-dts": "^4.5.4",
54
+ "vitepress": "^1.6.3",
55
+ "vue": "^3.5.30"
56
+ }
57
+ }