-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 878 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": "decoders-generator",
"version": "1.3.2",
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node ./index.ts",
"typecheck": "tsc --noEmit",
"watch": "ts-node-dev --respawn ./index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ncthbrt/decoder-generator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ncthbrt/decoder-generator/issues"
},
"homepage": "https://github.com/ncthbrt/decoder-generator#readme",
"dependencies": {
"decoders": "^2.0.0",
"typescript": "^4.6.3",
"yargs": "^17.4.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8"
}
}