-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "vdp",
"version": "1.2.0",
"description": "A Chrome Extension can show the vector drawable when you open it",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack.config.js --progress --mode=development --watch",
"build": "yarn clean; NODE_ENV=production webpack --config webpack.config.js --mode=production --progress",
"clean": "rimraf dist",
"package": "yarn build && zip -r extension.zip dist/;",
"lint": "eslint",
"lint:format": "prettier --write src/js --ext .ts",
"prepare": "husky",
"precommit": "lint-staged"
},
"author": "Jumpei Matsuda",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jmatsu/vector-drawable-previewer"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.json": "jsonlint -i"
},
"dependencies": {
"jquery": "^3.7.1"
},
"devDependencies": {
"@types/chrome": "^0.0.269",
"@types/jquery": "^3.5.30",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jsonlint": "^1.6.3",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "~5.1.4",
"webpack-merge": "~6.0.1"
}
}