-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "mediawiki-inpageedit",
"version": "14.5.2",
"description": "A useful MediaWiki JavaScript Plugin written with jQuery",
"main": "dist/InPageEdit.min.js",
"type": "module",
"files": [
"dist",
"i18n"
],
"scripts": {
"build": "npm run lint && npm run clear && run-p \"build:*\"",
"build:full": "vite build",
"build:compressed": "cross-env MINIFY=1 vite build",
"prepublish": "npm run build",
"lint": "eslint ./src",
"dev": "cross-env NODE_ENV=development && run-p dev:*",
"dev:preview": "vite preview",
"dev:build": "vite build --mode development --watch",
"clear": "rimraf dist",
"pretty": "prettier --write ./src"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^20.10.6",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"types-mediawiki": "^1.4.0",
"vite": "^5.0.10"
},
"author": "Dragon-Fish",
"license": "GPL-3.0-or-later",
"keywords": [
"mediawiki",
"mediawiki-gadget",
"inpageedit"
],
"homepage": "https://www.ipe.wiki/",
"repository": {
"type": "git",
"url": "git+https://github.com/inpageedit/inpageedit-v2.git"
},
"bugs": {
"url": "https://github.com/inpageedit/inpageedit-v2/issues"
}
}