-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.38 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
61
62
{
"name": "@quire-io/quire-cli",
"version": "0.1.5",
"description": "Command-line interface for the Quire API.",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"quire": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGES.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:live": "vitest run --config vitest.live.config.ts",
"package": "node scripts/build-sea.mjs",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"keywords": [
"quire",
"cli",
"task-management",
"productivity",
"api"
],
"license": "ISC",
"author": "Potix Corporation",
"repository": {
"type": "git",
"url": "git+https://github.com/quire-io/quire-cli.git"
},
"homepage": "https://github.com/quire-io/quire-cli#readme",
"bugs": {
"url": "https://github.com/quire-io/quire-cli/issues"
},
"dependencies": {
"@quire-io/api-client": "^0.1.9",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"esbuild": "^0.28.0",
"postject": "^1.0.0-alpha.6",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.1.5"
}
}