-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
{
"name": "better-zod-errors",
"version": "1.0.0-dev.4",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "biome check"
},
"keywords": [],
"author": "Sophia <me@sophia-dev.io>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/json-source-map": "^0.6.0",
"@types/node": "^24.5.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"jest": "^30.1.3",
"semantic-release": "^24.2.8",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.2",
"tsdown": "^0.15.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@atlaspack/codeframe": "^2.13.13",
"js-yaml": "^4.1.0",
"js-yaml-source-map": "^0.2.2",
"json-source-map": "^0.6.1",
"zod": "^4.1.9"
}
}