-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.32 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
{
"private": true,
"type": "module",
"engines": {
"node": ">=11.0.0"
},
"devDependencies": {
"@types/jsdom": "^20.0.0",
"@types/progress": "^2.0.5",
"@types/request": "^2.48.8",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-dmitmel": "dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"ultimate-crosscode-typedefs": "dmitmel/ultimate-crosscode-typedefs"
},
"dependencies": {
"jsdom": "^20.0.0",
"progress": "^2.0.3",
"request": "^2.88.2",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.3",
"yargs": "^17.3.1"
},
"scripts": {
"clean": "rm -rv dist/ enhanced-ui/dist/ tool/dist/",
"build": "tsc --build",
"watch": "tsc --build --watch",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore",
"check-fmt": "yarn run prettier --check '**/*.{js,ts,json,css,html,md}'"
},
"__comment__": "The following fields are for an nw.js app which will open if the user downloaded and unpacked the source code and point them to use the distribution archives instead.",
"name": "CrossCode",
"version": "1.0.0",
"main": "you-downloaded-source-code.html"
}