-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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
68
69
70
{
"name": "Script Manager",
"version": "1.6.3",
"description": "Script Manager Core - MediaWiki user script management",
"main": "scriptManager.js",
"browser": "scriptManager.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"src/**/*.css\" --allow-empty-input",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:fix": "eslint . --fix && stylelint \"src/**/*.css\" --fix --allow-empty-input",
"test": "vitest --passWithNoTests",
"test:run": "vitest run --passWithNoTests",
"build:dev": "vite build --mode development",
"build:prod": "vite build --mode production",
"build": "npm run build:dev && npm run build:prod",
"prebuild": "npm run lint",
"prepare": "husky"
},
"devDependencies": {
"@eslint/json": "^1.0.0",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.8.0",
"eslint": "^9.35.0",
"eslint-plugin-es-x": "^9.4.0",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-jsonc": "^2.21.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^63.0.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.1.6",
"stylelint": "^17.2.0",
"stylelint-config-standard": "^40.0.0",
"vite": "^7.3.1",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^4.0.18"
},
"keywords": [
"mediawiki",
"gadget",
"userscript",
"script-manager",
"testing"
],
"homepage": "https://www.mediawiki.org/wiki/Script_Manager",
"documentation": "https://www.mediawiki.org/wiki/Script_Manager",
"bugs": {
"url": "https://github.com/In1quity/script-manager/issues"
},
"author": {
"name": "Iniquity",
"url": "https://www.mediawiki.org/wiki/User:Iniquity"
},
"repository": {
"type": "git",
"url": "https://github.com/In1quity/script-manager.git",
"directory": "."
},
"license": "MIT OR CC-BY-SA-4.0",
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}