-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@opengovsg/starter-kitty-validators",
"version": "1.3.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./url": {
"types": "./dist/url/index.d.ts",
"default": "./dist/url/index.js"
},
"./path": {
"types": "./dist/path/index.d.ts",
"default": "./dist/path/index.js"
},
"./email": {
"types": "./dist/email/index.d.ts",
"default": "./dist/email/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"url": [
"./dist/url/index.d.ts"
],
"path": [
"./dist/path/index.d.ts"
],
"email": [
"./dist/email/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/opengovsg/starter-kitty"
},
"scripts": {
"build": "tsc && tsc-alias",
"build:report": "api-extractor run --local --verbose",
"build:docs": "api-documenter markdown --input-folder ../../temp/ --output-folder ../../apps/docs/api/",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"ci:report": "api-extractor run --verbose"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"dependencies": {
"email-addresses": "^5.0.0",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"zod": "^3.25.0 || ^4.0.0",
"@opengovsg/eslint-config-starter-kitty": "workspace:*",
"@opengovsg/prettier-config-starter-kitty": "workspace:*",
"@swc/core": "^1.6.13",
"@types/node": "^20",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5",
"vitest": "^4.1.0"
},
"prettier": "@opengovsg/prettier-config-starter-kitty"
}