-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.64 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@aerostack/sdk-node",
"version": "0.10.0",
"author": "Aerostack",
"type": "module",
"tshy": {
"sourceDialects": [
"@aerostack/sdk-node/source"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./*": "./src/*.ts"
}
},
"sideEffects": false,
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build": "tshy",
"prepublishOnly": "npm run build"
},
"peerDependencies": {},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/ws": "^8.18.1",
"eslint": "^9.26.0",
"globals": "^15.14.0",
"tshy": "^2.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.26.0",
"ws": "^8.19.0"
},
"dependencies": {
"@aerostack/core": "^0.10.0",
"zod": "^3.25.0 || ^4.0.0"
},
"exports": {
".": {
"import": {
"@aerostack/sdk-node/source": "./src/index.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json",
"./*": {
"import": {
"@aerostack/sdk-node/source": "./src/*.ts",
"types": "./dist/esm/*.d.ts",
"default": "./dist/esm/*.js"
},
"require": {
"types": "./dist/commonjs/*.d.ts",
"default": "./dist/commonjs/*.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}