-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 842 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 842 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "event-contract",
"version": "0.3.1",
"description": "Type-safe, implementation-agnostic event contract framework.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "release publish",
"prepublishOnly": "pnpm build && pnpm test"
},
"keywords": [
"event",
"contract",
"type",
"safe",
"subscribe",
"unsubscribe",
"push"
],
"author": "Artem Zakharchenko",
"license": "MIT",
"devDependencies": {
"@ossjs/release": "^0.5.0",
"@types/node": "^18.14.6",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.29.2",
"zod": "^3.21.4"
},
"peerDependencies": {
"zod": ">= 3 < 4"
}
}