-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 833 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 833 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
{
"name": "cratecode",
"version": "1.0.8",
"scripts": {
"build": "tsc"
},
"description": "A CLI for interacting with Cratecode.",
"bin": "dist/index.js",
"repository": "https://github.com/Cratecode/cli.git",
"author": "Cratecode",
"license": "Apache-2.0",
"dependencies": {
"@cratecode/client": "^1.0.13",
"prompts": "^2.4.2",
"yargs": "^17.7.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^20.12.12",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^9.3.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}