-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "chamomile-cli",
"version": "1.0.2",
"description": "Chamomile simplifies issue and git tracking from the command line",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && babel src --out-dir dist/src --extensions .ts",
"lint": "eslint src --quiet --ext .ts --cache",
"check": "tsc --noEmit",
"cli": "node ./dist/src/index.js",
"start": "pnpm build && pnpm cli",
"dev": "ts-node src/index.ts",
"develop": "bash scripts/installation/develop.sh",
"deprecated-build": "rm -rf dist/ && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@linear/sdk": "^1.22.0",
"@withgraphite/retype": "^0.3.1",
"chalk": "4.1.2",
"fs-extra": "^10.1.0",
"open": "^8.4.0",
"prompts": "^2.4.2",
"tmp": "^0.2.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.39",
"@types/prompts": "^2.0.14",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"bin": {
"cl": "./dist/src/index.js",
"chamomile": "./dist/src/index.js"
}
}