-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "@sulusolutions/sparkwall-sdk",
"version": "0.1.1",
"packageManager": "yarn@3.6.3",
"description": "TypeScript SDK library for using the Sparkwall API",
"engines": {
"node": "^20.0.0",
"npm": "please-use-yarn"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"generate": "npx openapi --input https://sparkwall-api.sulu.sh/openapi/openapi.json --output ./generated --client axios --name Sparkwall --useOptions",
"build": "npx tsc",
"sample": "npx ts-node sample.ts",
"spellcheck": "npx cspell --no-progress \"**\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:sulusolutions/sparkwall-sdk-ts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sulusolutions/sparkwall-sdk-ts/issues"
},
"homepage": "https://github.com/sulusolutions/sparkwall-sdk-ts",
"dependencies": {
"axios": "^1.6.8",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "20.12.7",
"cspell": "8.7.0",
"openapi-typescript-codegen": "0.29.0",
"ts-node": "10.9.2",
"typescript": "5.2.2"
}
}