-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.31 KB
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
60
{
"name": "@benmillerat/productboard-cli",
"version": "2.0.0",
"description": "Standalone Productboard CLI",
"license": "MIT",
"author": "Ben Miller",
"type": "module",
"bin": {
"pb": "bin/run.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"dev": "./bin/dev.js",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"productboard",
"cli",
"oclif"
],
"oclif": {
"bin": "pb",
"commands": "./dist/commands",
"dirname": "productboard-cli",
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^4.8.0",
"cli-table3": "^0.6.5",
"keytar": "^7.9.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"nock": "^14.0.10",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}