-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 721 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 721 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
{
"name": "@shared/contracts",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prebuild": "rm -rf dist",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch"
},
"dependencies": {
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}