forked from vankasteelj/trakt.tv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "@idavide94/trakt.tv-userscript",
"version": "1.0.2",
"description": "Interact with Trakt.tv API in userscripts",
"repository": {
"type": "git",
"url": "https://github.com/iDavide94/trakt.tv-userscript.git"
},
"homepage": "https://github.com/iDavide94/trakt.tv-userscript#readme",
"bugs": {
"url": "https://github.com/iDavide94/trakt.tv-userscript/issues"
},
"author": {
"name": "Jean van Kasteel"
},
"contributors": [
"Davide"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"trakt",
"api",
"wrapper",
"userscript"
],
"scripts": {
"build": "rollup -c",
"docs": "node docs/methods-generator.mjs && prettier --ignore-path .gitignore --write ./docs/available_methods.md",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "prettier --ignore-path .gitignore --check . && cspell --gitignore . && eslint --ignore-path .gitignore .",
"update": "updates -u && yarn install",
"watch": "rollup -c -w"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.3",
"cspell": "^7.0.0",
"eslint": "^8.47.0",
"eslint-config-greasemonkey": "^1.0.1",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.1",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-sort-json": "^1.0.0",
"rollup": "^3.28.0",
"updates": "^14.3.5"
},
"publishConfig": {
"access": "public"
}
}