-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "@anandchowdhary/browser-extension",
"version": "1.0.0",
"description": "Opinionated starter for building web browser extensions with TypeScript",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all 'clear-dist' 'build-popup' 'build-manifest'",
"clear-dist": "rimraf dist",
"build-manifest": "ts-node scripts/manifest.ts",
"build-popup": "ts-node scripts/parcel.ts && parcel build dist/popup.html dist/background.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnandChowdhary/browser-extension.git"
},
"keywords": [
"browser extension",
"web browser",
"chrome",
"firefox",
"extension"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnandChowdhary/browser-extension/issues"
},
"homepage": "https://anandchowdhary.github.io/browser-extension/",
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/sharp": "^0.24.0",
"fs-extra": "^8.1.0",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"rimraf": "^3.0.2",
"sass": "^1.26.3",
"sharp": "^0.25.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
}
}