-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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
{
"name": "kucoin-universal-sdk-example",
"version": "0.1.1-alpha",
"description": "KuCoin Universal SDK Examples",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc-alias",
"lint": "eslint 'src/**/*.{ts,js}' --fix",
"format": "prettier --write 'src/**/*.{ts,js,json}'",
"test": "jest",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Kucoin/kucoin-universal-sdk"
},
"author": "KuCoin",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"kucoin-universal-sdk": "1.3.0"
}
}