-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@heightapp/cli",
"version": "1.1.3",
"description": "",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"bin": {
"height": "dist/esm/cli.js"
},
"scripts": {
"build": "NODE_ENV=production ./scripts/build.js --esm",
"dev": "NODE_ENV=development ./scripts/build.js --esm && node dist/esm/cli.js",
"debug": "HEIGHT_DEBUG=true npm run dev",
"lint": "eslint ./src",
"prepare": "npm run build"
},
"repository": "git+https://github.com/heightapp/cli.git",
"author": "Height",
"license": "MIT",
"bugs": {
"url": "https://github.com/heightapp/cli/issues"
},
"homepage": "https://github.com/heightapp/cli#readme",
"devDependencies": {
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"esbuild": "^0.14.53",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@heightapp/client": "1.0.2",
"@heightapp/update-todos": "1.1.3",
"@types/colors": "^1.2.1",
"@types/git-diff-parser": "^1.0.1",
"@types/inquirer": "^8.2.1",
"@types/yargs": "^17.0.10",
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"env-paths": "^3.0.0",
"git-diff-parser": "^1.0.0",
"inquirer": "^9.0.2",
"keytar": "^7.9.0",
"left-pad": "^1.3.0",
"node-watch": "^0.7.3",
"open": "^8.4.0",
"throttled-queue": "^2.1.4",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1",
"yargs": "^17.5.1"
},
"optionalDependencies": {
"node-mac": "^1.0.1"
}
}