-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
44
{
"name": "@toppass/sdk",
"version": "1.0.0-alpha.13",
"description": "TopPass Client SDK",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist build && tsc && rollup --bundleConfigAsCjs -c rollup.config.js",
"prepublish": "npm run build",
"client:generate": "npx openapi -o src -c axios --name TopPassClient --useUnionTypes --postfixServices ''"
},
"authors": [
"Redhouane Sobaihi"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TopPassTeam/TopPass.Sdk.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"openapi-typescript-codegen": "^0.25.0",
"rimraf": "^5.0.5",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0"
}
}