-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
62
63
64
65
66
67
68
{
"name": "cbe-vpr",
"version": "1.5.1",
"description": "Some experiment with browser extensions.",
"repository": {
"type": "git",
"url": "https://github.com/wridgeu/chrome-extension-video-playbackrate.git",
"directory": "src"
},
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "npm-watch _watch_build",
"cleanup": "rimraf --glob dist *.dist.zip",
"_watch_build": "npm run cleanup && npm run build",
"lint": "eslint && prettier --check src",
"lint:fix": "eslint --fix && prettier --write src",
"prepare": "husky",
"zip": "npm-build-zip --name=dist --source=./dist"
},
"watch": {
"_watch_build": {
"patterns": [
"src/*",
"public/*"
],
"extensions": "ts,json,html,css",
"quiet": false,
"verbose": true
}
},
"keywords": [
"Chrome Extension",
"Video Speed Adjustments",
"Browser Extension",
"Extension"
],
"author": "Marco Beier",
"license": "Beerware",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chrome": "^0.0.268",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.5.2",
"husky": "^9.0.11",
"npm-build-zip": "^1.0.4",
"npm-watch": "^0.13.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-multi-input": "^1.4.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
},
"dependencies": {
"@ui5/webcomponents": "2.0.1"
}
}