@zcatalyst/transport 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/LICENCE +1 -0
- package/README.md +0 -0
- package/package.json +35 -0
package/LICENCE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ln -s ../../LICENSE packages/transport/LICENSE
|
package/README.md
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zcatalyst/transport",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"main": "./dist-cjs/index.js",
|
|
5
|
+
"module": "./dist-es/index.js",
|
|
6
|
+
"types": "./dist-types/index.d.ts",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@zcatalyst/auth": "^0.0.1",
|
|
10
|
+
"@zcatalyst/utils": "^0.0.1",
|
|
11
|
+
"@zcatalyst/auth-client": "^0.0.1"
|
|
12
|
+
},
|
|
13
|
+
"browser": {
|
|
14
|
+
"./dist-cjs/index.js": "./dist-cjs/index.browser.js",
|
|
15
|
+
"./dist-es/index.js": "./dist-es/index.browser.js",
|
|
16
|
+
"./dist-types/index.d.ts": "./dist-types/index.browser.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=21"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist-*/**"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "concurrently 'pnpm:build:cjs' 'pnpm:build:es' 'pnpm:build:types && pnpm build:types:downlevel'",
|
|
26
|
+
"build:cjs": "pnpm tsc -p tsconfig.cjs.json",
|
|
27
|
+
"build:es": "pnpm tsc -p tsconfig.es.json",
|
|
28
|
+
"build:types": "pnpm tsc -p tsconfig.types.json",
|
|
29
|
+
"build:types:downlevel": "rimraf dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
|
|
30
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
31
|
+
"lint": "eslint -c ../../eslint.config.mjs \"src/**/*.ts\"",
|
|
32
|
+
"test": "jest --config ./jest.config.js",
|
|
33
|
+
"format": "prettier --ignore-path ../.prettierignore --write \"{src, test}/*.ts\""
|
|
34
|
+
}
|
|
35
|
+
}
|