-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 976 Bytes
/
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
{
"name": "node-trojan",
"version": "1.0.0",
"description": "Trojan nodejs version.",
"type": "module",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/node": "~16.11",
"@typescript-eslint/eslint-plugin": "~5.14",
"@typescript-eslint/parser": "~5.14",
"eslint": "~8.11",
"eslint-config-prettier": "~8.5",
"nodemon": "^2.0.16",
"prettier": "~2.5",
"rimraf": "~3.0",
"tsutils": "~3.21",
"typescript": "~4.6"
},
"scripts": {
"start": "nodemon --es-module-specifier-resolution=node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts"
},
"author": "Giancarlo",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.2.0"
}
}