-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 955 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
37
38
39
40
41
42
{
"name": "local-ts-repl",
"version": "0.1.3",
"main": "index.ts",
"repository": "[email protected]:jalopez/local-ts-repl.git",
"author": "Javier López Pardo <[email protected]>",
"license": "APACHE",
"readme": "README.md",
"bin": {
"ts-repl": "./ts-repl"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"format": "prettier --loglevel warn --write .",
"format:check": "prettier --check .",
"typecheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^5.0.1",
"parse-json": "^6.0.2",
"pretty-repl": "^3.1.1",
"tsconfig-paths": "^3.12.0"
},
"peerDependencies": {
"ts-node": "*",
"typescript": "*"
},
"devDependencies": {
"@types/node": "17.0.32",
"husky": ">=7",
"lint-staged": ">=12",
"prettier": "2.6.2",
"type-fest": "2.8.0",
"typescript": "4.6.4"
},
"lint-staged": {
"*.{js,css,md,json,yml}": "yarn format"
}
}