-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.51 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.51 KB
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
{
"name": "tampermonkey_editors",
"version": "1.0.0",
"author": "Jan Biniok <jan@biniok.net>",
"license": "MIT",
"description": "",
"engines": {
"node": ">=20 <21",
"npm": ">=8.0.0"
},
"type": "module",
"scripts": {
"clean": "rm -rf out > /dev/null 2>&1; exit 0;",
"pack": "node Makefile.js pack",
"manifest": "node Makefile.js manifest",
"lint": "node Makefile.js lint",
"lint:debug": "node --inspect-brk ./node_modules/eslint/bin/eslint.js --",
"check": "node Makefile.js check",
"diff:hl": "git diff --diff-algorithm=minimal -M10 HEAD -w | delta --color-only --minus-style='white #770000' --minus-emph-style='white #CC0000' | sed 's/\\[0K//'",
"build": "node Makefile.js build",
"build:watch": "nodemon --watch src --ext \"ts,json,js\" --exec \"npm run build\"",
"scss": "node Makefile.js scss",
"package": "node Makefile.js package",
"all": "node Makefile.js all",
"all:watch": "nodemon --watch src --ext \"ts,json,js\" --exec \"npm run all\"",
"docker": "export CUID=${SUDO_UID:-$(id -u)} CGID=${SUDO_GID:-$(id -g)}; docker compose -f build/docker-compose.yml up",
"docker:build:__": "npm run docker -- -d && docker compose -f build/docker-compose.yml exec -e nominimize -e source-map-comment tampermonkey-editors-ext-env",
"docker:build": "npm run docker:build:__ -- npm run build",
"docker:build:watch": "npm run docker:build:__ -- npm run build:watch"
},
"sideEffects": [
"./src/polyfills/**/*.ts"
],
"devDependencies": {
"@types/chrome": "^0.1.32",
"@types/eslint": "^8.4.2",
"@types/firefox-webext-browser": "^120.0.0",
"@types/json-schema": "^7.0.7",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"archiver": "^6.0.1",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^7.1.2",
"eslint": "^7.30.0",
"eslint-plugin-es": "git+https://git@github.com/derjanb/eslint-plugin-es",
"glob": "^7.1.6",
"license-webpack-plugin": "^4.0.2",
"nodemon": "^2.0.20",
"sass": "^1.94.2",
"sass-loader": "^16.0.6",
"terser-webpack-plugin": "^4.2.2",
"tmp": "^0.2.1",
"ts-loader": "^9.2.3",
"typescript": "^4.6.4",
"uglify-js": "^3.5.4",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.0.1",
"which": "^2.0.1",
"wrapper-webpack-plugin": "github:derjanb/wrapper-webpack-plugin"
},
"dependencies": {
"vue": "^3.5.25"
}
}