-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "@elek-io/shared",
"version": "0.7.0",
"description": "Exposing shared code like zod schemas and utility functions to be used inside other @elek-io packages.",
"homepage": "https://elek.io",
"repository": "https://github.com/elek-io/shared",
"bugs": {
"url": "https://github.com/elek-io/shared/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint": "tsc",
"dev": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"build": "tsup",
"release": "changeset publish"
},
"dependencies": {
"slugify": "^1.6.6",
"uuid": "^9.0.1",
"zod": "^3.23"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.11.8",
"@types/uuid": "^9.0.8",
"@vitest/coverage-v8": "^1.2.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}