-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "better-trakt",
"version": "0.9.1",
"description": "A Trakt.tv client with native Typescript support and quality of life features",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/getaugur/better-trakt.git",
"author": "Husky <39809509+Huskydog9988@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/getaugur/better-trakt/issues"
},
"homepage": "https://github.com/getaugur/better-trakt",
"keywords": [
"trakt",
"trakt.tv",
"sdk",
"front-end",
"backend",
"api"
],
"scripts": {
"build": "tsc",
"build:check": "pnpm build --noEmit",
"build:docs": "typedoc --options typedoc.json",
"prepack": "pnpm build && npmignore --auto",
"lint": "eslint src/**/*.ts test/**/*.spec.ts",
"lint:fix": "eslint src/**/*.ts --quiet --fix",
"example": "node example/index.js",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts"
},
"dependencies": {
"axios": "^1.1.3"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"npmignore": "^0.3.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typedoc-plugin-extras": "^2.3.0",
"typedoc-plugin-mdn-links": "^2.0.0",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.7.4"
},
"publishConfig": {
"ignore": [
"!dist/"
]
}
}