-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "arxiv2notion",
"version": "1.4.0",
"description": "easy-to-use arXiv clipper",
"contributors": [
"denkiwakame<denkivvakame@gmail.com>",
"wangjksjtu <wangjksjtu@gmail.com>"
],
"license": "MIT License",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack serve --mode development",
"lint": "eslint src/js",
"format": "prettier --write src/js --check",
"format:check": "prettier src/js --check",
"pack": "npm run pack:keygen && npm run pack:zip",
"pack:zip": "crx pack -p key.pem -o packages/arxiv2notion.crx --zip-output packages/arxiv2notion.chrome.zip dist",
"pack:keygen": "if [ ! -f key.pem ] ; then crx keygen ./ ; fi"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.0",
"crx": "^5.0.1",
"css-loader": "^5.2.6",
"eslint": "^8.14.0",
"html-webpack-plugin": "^5.3.1",
"prettier": "^3.1.1",
"sass": "^1.34.1",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"mustache": "^4.2.0",
"then-chrome": "^1.0.7",
"uikit": "^3.6.22"
}
}