-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.89 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@capraconsulting/cals-cli",
"version": "0.0.0-development",
"description": "CLI for repeatable tasks in CALS",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky",
"build": "rollup -c",
"test": "vitest run --coverage src",
"test:watch": "vitest --coverage src",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"format:check": "biome format",
"prepack": "./scripts/build-and-verify.sh",
"semantic-release": "semantic-release",
"watch": "rollup -c -w",
"upgrade-deps": "ncu --upgrade --install=always --reject @types/node"
},
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"bin": {
"cals": "lib/cals-cli.mjs"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"cachedir": "^2.4.0",
"chalk": "5.6.2",
"execa": "^9.6.1",
"find-up": "^8.0.0",
"js-yaml": "^4.1.1",
"keytar": "^7.9.0",
"p-limit": "^7.3.0",
"yargs": "18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@octokit/types": "16.0.0",
"@rollup/plugin-alias": "6.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-replace": "6.0.3",
"@types/js-yaml": "4.0.9",
"@types/node": "24.11.0",
"@types/yargs": "17.0.35",
"@vitest/coverage-v8": "4.0.18",
"husky": "9.1.7",
"npm-check-updates": "19.6.3",
"rollup": "4.59.0",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/cals-cli.git"
},
"engines": {
"node": ">=22.14.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}