-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.72 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "node-csfd-api",
"version": "5.11.1",
"description": "ČSFD API in JavaScript. Amazing NPM library for scrapping csfd.cz :)",
"author": "BART! <bart@bartweb.cz>",
"scripts": {
"dev": "tsc -w",
"start": "yarn dev",
"server": "tsx server/index.ts",
"mcp": "tsx mcp-server/index.ts",
"prebuild": "rimraf dist",
"build": "tsdown",
"tsc": "tsc",
"demo": "tsx demo",
"example:cjs:ts": "cd examples/server/cjs && yarn build:ts",
"example:esm:ts": "cd examples/server/esm && yarn build:ts",
"example:cjs:js": "cd examples/server/cjs && yarn build",
"example:esm:js": "cd examples/server/esm && yarn build",
"letterboxd": "tsx examples/letterboxd/letterboxd-export.ts",
"examples": "yarn example:cjs:ts && yarn example:cjs:js && yarn example:esm:ts && yarn example:esm:js",
"lint": "oxlint --fix",
"docs": "typedoc",
"test": "vitest --watch=false",
"mock": "tsx tests/update-mocks.ts",
"test:coverage": "yarn test --coverage",
"publish:next": "yarn && yarn build && yarn test:coverage && cd dist && npm publish --tag next",
"postversion": "git push && git push --follow-tags",
"release:beta": "npm version preminor --preid=beta -m \"chore(update): prelease %s β\"",
"prerelease:beta": "npm version prerelease --preid=beta -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛\"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥\"",
"prepare": "husky",
"lint:check": "oxlint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"node-html-parser": "^9.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/preset-typescript": "^8.0.1",
"@types/express": "^5.0.6",
"@types/node": "^26.2.0",
"@vitest/coverage-istanbul": "^4.1.11",
"@vitest/ui": "^4.1.11",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"oxlint": "^1.79.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"rolldown-plugin-dist-package": "^1.1.0",
"tsdown": "^0.22.14",
"tsx": "^4.23.12",
"typedoc": "^0.28.20",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"repository": {
"url": "git+https://github.com/bartholomej/node-csfd-api.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/node-csfd-api/issues"
},
"homepage": "https://github.com/bartholomej/node-csfd-api#readme",
"keywords": [
"csfd",
"čsfd",
"ratings",
"movies",
"films",
"nodejs",
"node",
"typescript",
"scraper",
"parser",
"api",
"mcp",
"ai",
"docker",
"server",
"cli",
"claude",
"letterboxd"
],
"engines": {
"node": ">= 20"
},
"license": "MIT",
"lint-staged": {
"*.ts": [
"oxlint --fix",
"prettier --write"
]
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"csfd": "./dist/cli.js",
"node-csfd-api": "./dist/cli.js"
},
"sideEffects": false,
"packageManager": "yarn@4.18.0"
}