-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 KB
/
package.json
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
{
"name": "@saladtechnologies-oss/salad-cloud-sdk",
"version": "0.9.0-alpha.6",
"description": "The SaladCloud REST API. Please refer to the [SaladCloud API Documentation](https://docs.salad.com/api-reference) for more details.",
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"browser": "./dist/index.js",
"unpkg": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "tsc --noEmit",
"build": "tsup-node src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"sdk",
"api",
"client"
],
"files": [
"dist",
"README.md"
],
"author": "SaladCloud Support",
"homepage": "https://github.com/saladtechnologies/salad-cloud-sdk-javascript",
"license": "MIT",
"devDependencies": {
"typescript": "5.3.3",
"tsup": "^6.7.0"
},
"dependencies": {
"zod": "3.22.0"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}