generated from JeanOUINA/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 854 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
{
"name": "modernssh",
"private": true,
"version": "1.0.0",
"description": "[CHANGE THIS BEFORE RELEASE] Template made for Typescript",
"main": "dist/index.js",
"scripts": {
"test": "bun test ./__tests__/*/*",
"build": "tsc",
"start": "node .",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier -wc src"
},
"author": "JeanOUINA",
"license": "UNLICENSED",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.9.3",
"eslint": "^9.7.0",
"jest": "^29.7.0",
"modernlog": "^1.1.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"type": "module",
"dependencies": {
"asn1js": "^3.0.5",
"tweetnacl": "^1.0.3"
}
}