-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 930 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 930 Bytes
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
{
"name": "wavespeed",
"version": "0.2.3",
"description": "WaveSpeed Client SDK for Wavespeed API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"prepare": "npm run build"
},
"keywords": [
"api",
"client",
"sdk",
"wavespeed"
],
"author": "WaveSpeedAI <support@wavespeed.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WaveSpeedAI/wavespeed-javascript.git"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist"
]
}