-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "letterboxd-client",
"version": "1.0.1",
"description": "An unofficial Letterboxd API client.",
"license": "MIT",
"author": "Jon Ursenbach <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [],
"keywords": [
"letterboxd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/erunion/letterboxd-client.git"
},
"bugs": {
"url": "https://github.com/erunion/letterboxd-client/issues"
},
"homepage": "https://github.com/erunion/letterboxd-client#readme",
"scripts": {
"build": "tsc",
"lint": "npm run lint:types && npm run lint:js && npm run prettier",
"lint:js": "eslint . --ext .js,.ts --ignore-path ./.gitignore",
"lint:types": "tsc --noEmit",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"test": "vitest run --coverage"
},
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"@types/node": "^20.13.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"fetch-mock": "^9.11.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"prettier": "@readme/eslint-config/prettier"
}