-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1018 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
31
32
33
34
35
36
{
"name": "day9tv-extension",
"version": "1.0.2",
"description": "Just a simple accessibility optimizer & stuff",
"main": "index.js",
"scripts": {
"build": "export NODE_ENV=production && rm -rf dist && cp -r public dist && webpack",
"dev": "export NODE_ENV=development && rm -rf build && cp -r public build && webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varholak-peter/day9tv-extension.git"
},
"keywords": [
"day9tv",
"extension",
"a11y"
],
"author": "varholak-peter",
"license": "ISC",
"bugs": {
"url": "https://github.com/varholak-peter/day9tv-extension/issues"
},
"homepage": "https://github.com/varholak-peter/day9tv-extension#readme",
"dependencies": {
"preact": "^10.5.5"
},
"devDependencies": {
"@types/chrome": "^0.0.125",
"ts-loader": "^8.0.6",
"typescript": "^4.0.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
}
}