@series-inc/venus-sdk 2.2.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/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@series-inc/venus-sdk",
3
+ "version": "2.2.0",
4
+ "description": "Venus H5 API runtime with type-safe default export.",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.cjs",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "./api": {
16
+ "types": "./dist/venus-api/index.d.ts",
17
+ "import": "./dist/venus-api/index.mjs",
18
+ "require": "./dist/venus-api/index.cjs",
19
+ "default": "./dist/venus-api/index.mjs"
20
+ }
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsc && tsup",
27
+ "prepack": "npm run build",
28
+ "prepublishOnly": "npm run build",
29
+ "test": "jest"
30
+ },
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/series-ai/venus-sdk.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/series-ai/venus-sdk/issues"
38
+ },
39
+ "keywords": [
40
+ "venus",
41
+ "sdk",
42
+ "api",
43
+ "h5",
44
+ "games"
45
+ ],
46
+ "devDependencies": {
47
+ "@types/jest": "^29.5.12",
48
+ "jest": "^29.7.0",
49
+ "jest-environment-jsdom": "^30.2.0",
50
+ "ts-jest": "^29.1.2",
51
+ "ts-node": "^10.9.2",
52
+ "tsup": "^8.5.0",
53
+ "typescript": "^5.9.2"
54
+ }
55
+ }