-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.9 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@rainstormy/updraft",
"version": "1.2.0",
"description": "Updraft updates changelogs and bumps version numbers when you are about to release a new version of your project.",
"keywords": [
"automation",
"changelog",
"package",
"publish",
"release",
"semantic",
"semver",
"update",
"upgrade",
"version"
],
"bugs": "https://github.com/rainstormy/updraft/issues",
"repository": {
"type": "git",
"url": "https://github.com/rainstormy/updraft.git"
},
"license": "MIT",
"author": "Steffen Diswal",
"type": "module",
"bin": {
"updraft": "dist/cli/index.js"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": ["dist/cli/", "dist/lib/"],
"packageManager": "[email protected]+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "pnpm /^build\\..*/",
"build.cli": "MODULE=cli vite build --outDir dist/cli/ --minify",
"build.gha": "MODULE=gha vite build --outDir dist/gha/ --minify",
"build.lib": "MODULE=lib vite build --outDir dist/lib/",
"check": "pnpm check.fmt && pnpm check.types",
"check.fmt": "biome check --error-on-warnings",
"check.types": "tsc",
"fmt": "biome check --write",
"postinstall": "lefthook install",
"test": "CI=1 vitest run",
"vi": "CI=1 vitest watch --ui",
"yolo": "lefthook uninstall"
},
"dependencies": {
"ansis": "3.9.0",
"fast-glob": "3.3.3",
"tslib": "2.8.1"
},
"// dependencies": {
"ansis": "This library formats console output.",
"fast-glob": "This library executes glob patterns in the file system.",
"tslib": "This library optimises TypeScript applications when the `importHelpers` option is enabled in `tsconfig.json`."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rainstormy/presets-biome": "1.0.0",
"@rainstormy/presets-typescript": "1.0.1",
"@types/node": "20.17.24",
"@vitest/coverage-v8": "3.0.7",
"@vitest/ui": "3.0.7",
"lefthook": "1.11.2",
"typescript": "5.7.3",
"vite": "6.2.0",
"vitest": "3.0.7"
},
"// devDependencies": {
"@biomejs/biome": "Biome is an opinionated linter and code formatter.",
"@rainstormy/presets-biome": "This library provides predefined, opinionated Biome configurations.",
"@rainstormy/presets-typescript": "This library provides predefined, opinionated TypeScript configurations.",
"@types/node": "These type definitions cover Node.js modules.",
"@vitest/coverage-v8": "This Vitest plugin reports code coverage.",
"@vitest/ui": "This Vitest plugin provides a test overview in the web browser.",
"lefthook": "Lefthook is a Git hooks manager.",
"typescript": "TypeScript is a statically typed programming language on top of JavaScript.",
"vite": "Vite is a development server and a bundler.",
"vitest": "Vitest is a unit testing framework."
}
}