-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1017 Bytes
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
{
"name": "talkterms",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit"
},
"keywords": [],
"author": "Thiago D.L. Moreira",
"email": "rte3ykkm3@mozmail.com",
"license": "AGPL-3.0-only",
"description": "",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/blessed": "^0.1.25",
"@types/node": "^22.15.18",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"dependencies": {
"blessed": "^0.1.81",
"open": "^10.1.2",
"socket.io-client": "^4.8.1"
}
}