-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"author": "put.io <[email protected]>",
"bugs": {
"url": "https://github.com/putdotio/putio-js/issues"
},
"dependencies": {
"axios": "^0.21.1",
"event-emitter": "^0.3.5",
"js-base64": "2.6.3",
"qs": "^6.10.3",
"urijs": "^1.19.7"
},
"description": "JavaScript SDK for interacting with the put.io API.",
"devDependencies": {
"@putdotio/prettier-config": "^1.0.0",
"@types/event-emitter": "^0.3.3",
"@types/js-base64": "2.3.1",
"@types/qs": "^6.9.7",
"@types/urijs": "^1.19.18",
"@types/uuid": "^8.3.4",
"husky": "^4.2.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "4.5.5"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/putdotio/putio-js",
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"keywords": [
"putio",
"put.io",
"sdk"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/api-client.esm.js",
"name": "@putdotio/api-client",
"prettier": "@putdotio/prettier-config",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/putdotio/putio-js.git"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "5.10.2",
"**/@typescript-eslint/parser": "5.10.2"
},
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test",
"tsc": "tsc --noEmit"
},
"typings": "dist/index.d.ts",
"version": "8.49.0"
}