-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "plane-cli",
"version": "0.3.0",
"description": "Unofficial CLI for Plane",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"plane": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "node --version",
"build": "tsc -p tsconfig.json",
"clean": "powershell -NoProfile -Command \"if (Test-Path dist) { Remove-Item -Recurse -Force dist }\"",
"dev": "bun src/cli.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"verify-pack": "bash scripts/verify-pack.sh"
},
"keywords": [
"plane",
"cli",
"project-management",
"api"
],
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^24.0.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.28.0",
"vitest": "^3.2.4"
}
}