-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 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
{
"name": "chrome-media-controller",
"version": "0.2.1",
"description": "Control media playback in Chrome from the command-line.",
"main": "dist/cli/main.js",
"repository": "https://github.com/JosephusPaye/chrome-media-controller.git",
"author": "Josephus Paye II",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"cmc": "dist/cli/main.js"
},
"files": [
"dist/cli",
"dist/host",
"dist/install.js",
"dist/uninstall.js"
],
"scripts": {
"build": "rollup -c rollup.config.js && yarn copy-assets",
"prod": "rollup -c rollup.config.js --environment BUILD:production && yarn copy-assets",
"copy-assets": "cp -t dist/extension src/extension/manifest.json && cp -t dist/host src/host/main.bat src/host/install.bat src/host/uninstall.bat src/host/manifest.json",
"format": "prettier --write \"src/**/*.{ts,js}\" \"*.{js,json,md}\"",
"postinstall": "node dist/install.js",
"uninstall": "node dist/uninstall.js"
},
"dependencies": {
"@josephuspaye/chrome-native-bridge": "^0.3.0",
"@josephuspaye/pipe-emitter": "^0.2.1",
"kleur": "^4.1.3",
"sade": "^1.7.4",
"tslib": "^2.0.3",
"webext-domain-permission-toggle": "^1.0.1",
"webext-dynamic-content-scripts": "^7.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^14.14.9",
"@types/sade": "^1.7.2",
"@types/wicg-mediasession": "^1.1.0",
"prettier": "^2.2.0",
"rollup": "^2.33.3",
"rollup-plugin-preserve-shebang": "^1.0.1",
"typescript": "^4.1.2"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true
}
}