-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 844 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
{
"name": "navel",
"version": "0.0.1",
"description": "A simple navigation extension for chrome.",
"files": [
"dist"
],
"author": "Ian Fisk <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ianfisk/navel"
},
"scripts": {
"dev": "rimraf ./dist && NODE_ENV=development webpack --watch",
"build": "rimraf ./dist && webpack",
"prettier": "prettier --write \"./src/**/*.ts\"",
"prettier-check": "prettier --list-different \"./src/**/*.ts\""
},
"devDependencies": {
"@types/chrome": "^0.0.86",
"@types/node": "^12.0.7",
"copy-webpack-plugin": "^5.0.3",
"prettier": "^2.5.1",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.2",
"typescript": "^4.5.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"poli-c": "^1.0.2",
"rxjs": "^6.5.2"
}
}