-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "typescript-chrome-extension-starter",
"version": "0.1.0",
"description": "Get started writing a Chrome extension in TypeScript",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w"
},
"dependencies": {
"@types/chrome": "^0.0.116",
"webextension-polyfill-ts": "^0.12.0"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-typescript": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "7.1.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.0.5",
"rollup": "^1.32.1",
"rollup-plugin-chrome-extension": "^3.0.1",
"rollup-plugin-empty-dir": "^1.0.4",
"tslib": "^2.0.0",
"typescript": "^3.7.4"
}
}