-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.17 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
{
"name": "monaco-wiki",
"version": "1.4.2",
"description": "Monaco editor for MediaWiki sites",
"keywords": [
"monaco",
"mediawiki",
"wikitext"
],
"homepage": "https://github.com/bhsd-harry/monaco-wiki#readme",
"bugs": {
"url": "https://github.com/bhsd-harry/monaco-wiki/issues"
},
"license": "GPL-3.0",
"author": "Bhsd",
"type": "module",
"files": [
"/dist/",
"!/dist/*.map"
],
"browser": "/dist/main.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bhsd-harry/monaco-wiki.git"
},
"scripts": {
"lint:ts": "tsc && tsc --project gh-page/tsconfig.json --noEmit && eslint --cache .",
"lint:css": "stylelint gh-page/*.css",
"lint": "npm run lint:ts && npm run lint:css",
"build:core": "esbuild src/main.ts --charset=utf8 --bundle --minify --target=es2019 --format=esm --sourcemap --outfile=dist/main.min.js",
"build:all": "esbuild src/all.ts --charset=utf8 --bundle --minify --target=es2019 --sourcemap --outfile=dist/all.min.js",
"build:gh-page": "tsc --project gh-page/tsconfig.json",
"build": "npm run build:core && npm run build:all && eslint --no-eslintrc -c .eslintrc.dist.cjs dist/*.js",
"server": "npm run test:end; http-server .. -c-1 --cors &",
"test:end": "pkill -x http-server"
},
"devDependencies": {
"@bhsd/codemirror-mediawiki": "^2.18.9",
"@bhsd/common": "^0.4.5",
"@codemirror/lint": "^6.8.0",
"@shikijs/monaco": "^1.10.3",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/stylelint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"esbuild": "^0.21.4",
"eslint": "^8.56.0",
"eslint-plugin-es-x": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^48.5.2",
"eslint-plugin-json-es": "^1.6.0",
"eslint-plugin-markdown": "^4.0.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^54.0.0",
"http-server": "^14.1.0",
"luacheck-browserify": "^0.1.0",
"monaco-editor": "^0.52.0",
"shiki": "^1.10.3",
"stylelint": "^16.6.1",
"stylelint-config-recommended": "^14.0.0",
"typescript": "^5.5.3",
"wikiparser-node": "^1.13.4"
}
}