-
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.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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": "@joltdesign/scripts",
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7",
"bin": {
"jolt": "./dist/cli.js"
},
"version": "1.5.0",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^24.12.0",
"@types/which": "^3.0.4",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"jira-prepare-commit-msg": {
"messagePattern": "$J $M",
"ignoredBranchesPattern": "^(dependabot/|renovate/)"
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc -b && yarn run generate-schema",
"clean": "rimraf dist",
"debug": "node --inspect-brk ./dist/cli.js",
"generate-schema": "yarn node ./scripts/generate-schema.js && yarn lint --write jolt-config.schema.json",
"lint": "biome check",
"fmt": "biome format",
"prepack": "run build",
"prepare": "jolt prepare",
"test": "vitest",
"test:coverage": "vitest --coverage.enabled=true",
"test:run": "vitest run",
"watch": "tsc -w"
},
"dependencies": {
"ansis": "^4.2.0",
"change-case": "^5.4.4",
"clipanion": "^4.0.0-rc.4",
"dotenv": "^17.3.1",
"execa": "^9.6.1",
"object-resolve-path": "^1.1.1",
"typanion": "^3.14.0",
"which": "^6.0.1",
"zod": "^4.3.6"
}
}