-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 950 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 950 Bytes
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
{
"name": "amazon-wishlist-pointgetter",
"description": "Google Chrome Extension for Amazon.co.jp",
"version": "1.5.4",
"private": true,
"license": "MIT",
"repository": "https://github.com/tetratensor/amazon-wishlist-pointgetter",
"author": "tetratensor <> (https://github.com/tetratensor)",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development",
"watch": "webpack --watch --mode=development",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"deploy-chrome": "node scripts/deploy.js",
"zip": "cd dist && zip -r ../extension.zip .",
"sync-version": "node scripts/sync-version.js",
"prepare": "husky install"
},
"devDependencies": {
"copy-webpack-plugin": "^13.0.0",
"husky": "^8.0.3",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"dependencies": {}
}