-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.73 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
{
"name": "ffz-hide-purchase-options",
"version": "3.1.0",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"description": "Unofficial FFZ addon giving options to remove purchases from twitch",
"bugs": {
"url": "https://github.com/dynamiteandy/ffz-hide-purchase-options/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dynamiteandy/ffz-hide-purchase-options",
"homepage": "https://github.com/dynamiteandy/ffz-hide-purchase-options"
},
"author": "Dynamite Andy - [email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"analyse": "cross-env webpack_analyse=true webpack --config ./build/webpack.dev.conf.ts",
"build": "concurrently --group --max-processes 3 --names \"dev,prod,prod-min\" \"pnpm run build:dev\" \"pnpm run build:prod\" \"pnpm run build:prod-min\"",
"build:release": "concurrently --group --max-processes 2 --names \"prod,prod-min\" \"pnpm run build:prod\" \"pnpm run build:prod-min\"",
"build:dev": "webpack --config ./build/webpack.dev.conf.ts",
"build:prod": "webpack --config ./build/webpack.prod.conf.ts",
"build:prod-min": "cross-env webpack_minimize=true webpack --config ./build/webpack.prod.conf.ts",
"lint": "concurrently --group --max-processes 2 --names \"scss,ts\" \"pnpm run lint:scss\" \"pnpm run lint:ts\"",
"lint:scss": "prettier -c \"**/*.scss\"",
"lint:ts": "eslint . --ext .ts",
"fix": "concurrently --group --max-processes 2 --names \"scss,ts\" \"pnpm run fix:scss\" \"pnpm run fix:ts\"",
"fix:scss": "prettier -w \"**/*.scss\"",
"fix:ts": "eslint . --fix --ext .ts",
"start": "cross-env webpack_watch=true pnpm run build:dev"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/tampermonkey": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@typescript-eslint/utils": "^6.18.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"esbuild-loader": "^4.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"userscript-metadata-webpack-plugin": "^0.4.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-sources": "^3.2.3"
},
"url": "https://github.com/dynamiteandy/ffz-hide-purchase-options"
}