-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "@badrap/valita",
"version": "0.5.1",
"description": "A validation & parsing library for TypeScript",
"license": "MIT",
"author": "Joachim Viide <jviide@iki.fi>",
"repository": {
"type": "git",
"url": "git+https://github.com/badrap/valita.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"publishConfig": {
"provenance": true
},
"scripts": {
"fix": "oxfmt && oxlint --fix",
"check": "oxfmt --check && oxlint",
"test": "vitest run",
"build": "rm -rf dist/* && tsc -p ./tsconfig.build.json",
"changeset": "changeset",
"bump": "changeset version && sed --in-place \"s/\\\"version\\\": \\\".*\\\"/\\\"version\\\": \\\"$(sed -n 's/^\\s*\\\"version\\\": \\\"\\([^\\\"/]*\\)\\\".*/\\1/p' package.json)\\\"/\" jsr.json",
"tag": "node --run build && changeset tag"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">= 22"
},
"packageManager": "pnpm@11.0.0+sha512.5bd187500e49cc6c3d891d973b432c02b844a5eb7209172c90a517a3ef4f579ed5c23d409b699e6a9dc418ff7b2b1890e63f6d74f1d3fc49848f37779c89c84c"
}