-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 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
{
"name": "youtubeaudiocompressor",
"version": "1.0.4",
"description": "A simple Youtube extension that compresses video audio sound levels",
"license": "MIT",
"author": "DanCodes <[email protected]>",
"homepage": "https://github.com/dan-online/youtubeaudiocompressor#readme",
"bugs": {
"url": "https://github.com/dan-online/youtubeaudiocompressor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan-online/youtubeaudiocompressor.git"
},
"scripts": {
"build": "rollup -c",
"build:prod": "NODE_ENV=production rollup -c && cd dist && zip -r ../releases/\"$npm_package_name\"-\"$npm_package_version\".zip .",
"lint": "biome check src/**/*.ts",
"start": "rollup -c -w"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@sapphire/eslint-config": "^5.0.5",
"@types/chrome": "^0.0.293",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"rollup-plugin-chrome-extension": "^3.6.12",
"rollup-plugin-empty-dir": "^1.0.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"webextension-polyfill": "^0.12.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@biomejs/biome": "^1.9.4"
}
}