-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 810 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 810 Bytes
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
{
"name": "kitql",
"version": "0.0.1",
"type": "module",
"author": "jycouet <jycouet@gmail.com>",
"license": "MIT",
"scripts": {
"build": "pnpm -F \"!docs\" build",
"release:version": "npm run changeset version",
"release": "npm run build && changeset publish --verbose",
"reset": "git clean -xdf",
"lint": "kitql-lint",
"format": "kitql-lint --format",
"up-dep": "pnpm -r up --latest"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:lib-author-helper",
"@changesets/cli": "catalog:lib-author-helper",
"@vitest/coverage-v8": "catalog:testing",
"esbuild": "catalog:tooling",
"oxlint": "catalog:linting-oxc",
"oxlint-tsgolint": "catalog:linting-oxc",
"prettier": "catalog:formatting",
"vitest": "catalog:testing"
}
}