-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "maria",
"version": "5.0.0",
"description": "Utility extension for personal use.",
"scripts": {
"start": "echo 'To run the app in dev mode use: npm run watch'",
"lint": "eslint --fix -c .eslintrc.js 'src/**/*.ts{,x}'",
"clean": "rm -rf dist && cpy manifest.json dist && cpy src/assets/* dist/assets",
"prebuild": "npm run clean",
"build": "env NODE_ENV=production webpack --config webpack.config.js",
"prewatch": "npm run clean",
"watch": "env NODE_ENV=development webpack --config webpack.config.js -w",
"test": "jest",
"test:watch": "jest -o --watch",
"test:coverage": "jest --coverage",
"prepare": "husky"
},
"lint-staged": {
"{,src}/**/*.{ts,js}": [
"npm run lint"
],
"{,src}/**/*.{html,scss}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bakuzan/maria.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bakuzan/maria/issues"
},
"homepage": "https://github.com/bakuzan/maria#readme",
"devDependencies": {
"@types/chrome": "0.0.284",
"@types/jest": "^28.1.8",
"@types/luxon": "^3.4.2",
"@types/node": "^22.9.3",
"@types/sortablejs": "^1.15.8",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"buffer": "^6.0.3",
"cpy-cli": "^5.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.3",
"https-browserify": "^1.0.0",
"husky": "^9.1.7",
"jest": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.2",
"mockzilla": "^0.14.0",
"mockzilla-webextension": "^0.15.0",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"process": "^0.11.10",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12",
"ts-jest": "^28.0.8",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"url": "^0.11.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"jest-environment-jsdom": "^28.1.3",
"jszip": "^3.10.1",
"luxon": "^3.5.0",
"rss-parser": "^3.13.0",
"sortablejs": "^1.15.4",
"webextension-polyfill": "^0.12.0"
}
}