-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 962 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
{
"name": "autobashcraft",
"version": "1.0.26",
"description": "",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/autobashcraft/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autobashcraft/cli.git"
},
"bin": {
"autobashcraft": "./dist/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts examples/test/testfile.md",
"build-docker": "docker build -t cioddi/autobashcraft src/.",
"doc": "typedoc --out docs_test --readme none src/commands.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"marked": "^11.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.6",
"typescript": "^5.3.3"
}
}