-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "zod-custom-events",
"version": "1.0.0",
"description": "Type safe, framework agnostic, Zod based, custom events extension library.",
"keywords": [
"events",
"custom",
"emmit",
"type-safe",
"zod",
"controller",
"dispatch",
"subscribe",
"listener",
"middleware",
"typescript"
],
"homepage": "https://github.com/georgecht/zod-custom-events",
"author": "https://github.com/georgecht",
"repository": {
"type": "git",
"url": "git+https://github.com/georgecht/zod-custom-events"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/georgecht/zod-custom-events/issues"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean:build && npm run build:dist && npm run build:types",
"build:dist": "rollup -c",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"check": "biome check --write ./src",
"clean": "node scripts/rm.mjs",
"clean:dev": "npm run clean node_modules",
"clean:build": "npm run clean dist",
"release": "semantic-release",
"version": "node scripts/version.mjs",
"test": "jest",
"test:coverage": "npx jest --coverage",
"test:types": "tsc --noEmit",
"size": "size-limit",
"commit": "git add . && cz"
},
"dependencies": {
"zod": "^3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^12.1.0",
"@sebbo2002/semantic-release-jsr": "2.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@size-limit/preset-small-lib": "^11.1.6",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"inquirer": "^9.3.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.24.0",
"rollup-plugin-esbuild-minify": "^1.1.2",
"semantic-release": "^24.1.2",
"size-limit": "^11.1.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "1 kB"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}