-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "hanassist",
"version": "4.2.4",
"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": "eslint .",
"type-check": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^28.1.6",
"@types/jquery": "^3.5.14",
"eslint": "^8.56.0",
"globals": "^15.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.6.1",
"rollup": "^3.26.3",
"rollup-plugin-mediawiki-gadget": "^1.0.5",
"ts-jest": "^28.0.7",
"types-mediawiki": "^1.4.0",
"typescript": "^4.7.4",
"typescript-eslint": "^7.6.0"
},
"dependencies": {
"jquery": "^3.6.0",
"jsdom": "^20.0.0",
"tslib": "^2.6.2"
}
}