-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "hanassist",
"version": "4.3.0",
"description": "A MediaWiki gadget to ease Chinese variant handling in user scripts and gadgets.",
"repository": "github:diskdance/HanAssist",
"author": "diskdance",
"license": "BSD-3-Clause",
"main": "./dist/Gadget-HanAssist.js",
"typings": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "rollup -c",
"build:compat": "COMPAT=1 rollup -c",
"lint": "tsc --noEmit && eslint .",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^28.1.8",
"@types/jquery": "^3.5.32",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.30.1",
"rollup-plugin-mediawiki-gadget": "^1.2.1",
"ts-jest": "^29.2.5",
"types-mediawiki": "^1.9.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"jquery": "^3.7.1",
"jsdom": "^20.0.3",
"tslib": "^2.8.1"
}
}