-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "standardenv",
"version": "0.1.0",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "bun run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "oxlint --type-aware && oxfmt --check",
"fmt": "oxfmt",
"test": "vitest",
"prepack": "bun run build",
"release": "npm version",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"release:beta": "npm version prerelease --preid=beta"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
},
"devDependencies": {
"@types/bun": "1.3.11",
"arktype": "^2",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.18.1",
"rimraf": "^6.1.3",
"typescript": "6.0.2",
"valibot": "^1",
"vitest": "4.1.2",
"zod": "^4.3.6"
}
}