-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "kinobox-browser-plugin",
"version": "1.0.0",
"private": true,
"description": "Plugin for your web browser. First feature is automatic redirect from csfd movie page to kinobox search query with the movie title. Later we can do more with it.",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint",
"lint-fix": "eslint . --fix",
"test": "jest",
"build": "npm run build -w @kinobox/browser-extension",
"watch": "npm run watch -w @kinobox/browser-extension",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/landsman/kinobox-browser-plugin.git"
},
"keywords": [
"kinobox"
],
"author": "Michal Landsman",
"license": "MIT",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"bugs": {
"url": "https://github.com/landsman/kinobox-browser-plugin/issues"
},
"homepage": "https://github.com/landsman/kinobox-browser-plugin#readme",
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.3",
"babel-jest": "^30.2.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1"
}
}