-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 997 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
{
"name": "arxiv2notionplus",
"version": "0.1.0",
"description": "easy-to-use arXiv clipper",
"author": "wangjksjtu <wangjksjtu@gmail.com>",
"license": "MIT License",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack serve --mode development",
"pack": "npm run pack:keygen && npm run pack:zip",
"pack:zip": "crx pack -p key.pem -o packages/arxiv2scrap.crx --zip-output packages/arXiv2scrap.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",
"html-webpack-plugin": "^5.3.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": "^3.11.2"
},
"dependencies": {
"mustache": "^4.2.0",
"then-chrome": "^1.0.7",
"uikit": "^3.6.22"
}
}