@ones-open/web-sdk 0.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/dist/index.cjs ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const ONES = "ONES";
4
+ exports.ONES = ONES;
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const ONES = "ONES";
2
+ export {
3
+ ONES
4
+ };
@@ -0,0 +1,2 @@
1
+ export declare const ONES = "ONES";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,SAAS,CAAA"}
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // fallback entry for unsupported npm exports statement
2
+ export * from './dist/types/index'
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // fallback entry for unsupported npm exports statement
2
+ export * from './dist/index.js'
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@ones-open/web-sdk",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "build": "pnpm clean && pnpm run tsc && vite build",
18
+ "clean": "rm -rf ./dist",
19
+ "test": "tsc --noEmit --emitDeclarationOnly false",
20
+ "tsc": "tsc && tsc-alias"
21
+ },
22
+ "keywords": [
23
+ "ones"
24
+ ],
25
+ "author": {
26
+ "name": "lixinliang",
27
+ "email": "lixinliang@ones.cn"
28
+ },
29
+ "maintainers": [
30
+ {
31
+ "name": "ones"
32
+ }
33
+ ],
34
+ "files": [
35
+ "dist",
36
+ "index.d.ts",
37
+ "index.js"
38
+ ],
39
+ "license": "Apache-2.0",
40
+ "publishConfig": {
41
+ "registry": "https://registry.npmjs.org",
42
+ "access": "public"
43
+ }
44
+ }