-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.44 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
93
{
"private": true,
"name": "deputy",
"description": "Contributor copyright investigation and copyright cleanup assistance tool for Wikipedia.",
"version": "0.8.0",
"main": "src/deputy.js",
"scripts": {
"test": "npm run build && npm run test:clean && npm run test:jest",
"test:clean": "shx rm -rf tests/artifacts/ && shx mkdir -p tests/artifacts/",
"test:jest": "jest",
"clean": "shx rm -rf build node_modules/.cache/rollup-plugin-typescript2",
"prebuild": "shx mkdir -p build/i18n/ && shx cp -Rf i18n/* build/i18n/",
"build": "npm run prebuild && rollup -c",
"build:deputy": "npm run prebuild && cross-env DEPUTY_ONLY=deputy rollup -c",
"build:ante": "npm run prebuild && cross-env DEPUTY_ONLY=ante rollup -c",
"build:ia": "npm run prebuild && cross-env DEPUTY_ONLY=ia rollup -c",
"dev": "cross-env DEPUTY_DEV=true rollup -c --watch",
"dev:deputy": "cross-env DEPUTY_ONLY=deputy npm run dev",
"dev:ante": "cross-env DEPUTY_ONLY=ante npm run dev",
"dev:ia": "cross-env DEPUTY_ONLY=ia npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChlodAlejandro/deputy.git"
},
"keywords": [
"wikimedia",
"wikipedia",
"copyright",
"userscript"
],
"author": "ChlodAlejandro <chlod@chlod.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChlodAlejandro/deputy/issues"
},
"homepage": "https://github.com/ChlodAlejandro/deputy#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.14",
"@types/node": "^17.0.41",
"@types/oojs-ui": "^0.46.1",
"@types/selenium-webdriver": "^4.1.24",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"axios": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-wikimedia": "^0.28.2",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jsdoc": "^50.2.2",
"jest": "^29.7.0",
"moment": "^2.29.4",
"oojs-ui": "^0.50.3",
"rollup": "^4.21.2",
"rollup-plugin-git-info": "^1.0.0",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.12.0",
"rollup-pluginutils": "^2.8.2",
"selenium-webdriver": "^4.22.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.26.3",
"typedoc-plugin-mdn-links": "^3.2.3",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"types-mediawiki": "github:wikimedia-gadgets/types-mediawiki",
"typescript": "^4.7.4"
},
"overrides": {
"serve-handler": {
"minimatch": "~3.1.2"
},
"semver": "^7.5.4"
},
"browserslist": [
">0.05% and supports fetch and not dead"
],
"dependencies": {
"@chlodalejandro/parsoid": "^2.0.1-37ea110",
"broadcastchannel-polyfill": "^1.0.1",
"idb": "^8.0.0",
"tsx-dom": "^1.4.0"
}
}