Skip to content

Commit 59515a9

Browse files
added package json
ISSUE: CLDSRVCLT-1
1 parent 2c679fc commit 59515a9

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

package.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "@scality/cloudserverclient",
3+
"version": "1.0.0",
4+
"engines": {
5+
"node": ">=20"
6+
},
7+
"description": "Smithy-generated TypeScript client for Cloudserver's internal APIs",
8+
"main": "dist/index.js",
9+
"types": "dist/index.d.ts",
10+
"files": [
11+
"dist",
12+
"build/smithy/source/typescript-codegen"
13+
],
14+
"scripts": {
15+
"clean:build": "rm -rf build dist",
16+
"build:smithy": "smithy build",
17+
"build:generated": "cd build/smithy/source/typescript-codegen && yarn install && yarn build",
18+
"build:wrapper": "tsc",
19+
"build": "yarn install && yarn clean:build && yarn build:smithy && yarn build:generated && yarn build:wrapper",
20+
"test": "jest"
21+
},
22+
"devDependencies": {
23+
"typescript": "^5.7.3",
24+
"@types/jest": "^30.0.0",
25+
"jest": "^30.2.0",
26+
"ts-jest": "^29.4.4"
27+
},
28+
"dependencies": {
29+
"fast-xml-parser": "^4.3.2",
30+
"@aws-sdk/client-s3": "^3.896.0",
31+
"JSONStream": "^1.3.5"
32+
},
33+
"author": "Scality",
34+
"license": "Apache-2.0",
35+
"repository": {
36+
"type": "git",
37+
"url": "https://github.com/scality/cloudserverclient.git"
38+
}
39+
}

0 commit comments

Comments
 (0)