forked from dmitmel/ccloader3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.04 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
{
"private": true,
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"jszip": "=3.10.1",
"semver": "=6.3.0",
"strip-json-comments": "^5.0.1"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/jquery": "^1.10.31",
"@types/node": ">=11.9",
"@types/semver": "6.2.x || 6.3.x",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"archiver": "^5.3.1",
"esbuild": "^0.20.0",
"esbuild-copy-static-files": "^0.1.0",
"eslint": "^8.56.0",
"eslint-config-dmitmel": "dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.8.8",
"readdir-glob": "^1.1.1",
"typescript": "~4.8.4",
"ultimate-crosscode-typedefs": "github:CCDirectLink/ultimate-crosscode-typedefs"
},
"scripts": {
"build": "node build.mjs",
"lint": "eslint . --ext .js,.ts --ignore-path .eslintignore",
"check-fmt": "prettier --check '**/*.{js,ts,json,css,html}'",
"format": "prettier --write **/*.{js,ts,json,css,html}"
}
}