-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@cookielab.io/typescript-config",
"description": "Shareable TypeScript configuration for a simple project kickoff.",
"version": "0.1.0",
"files": [
"dist"
],
"exports": {
"default": "./dist/tsconfig.json"
},
"main": "./dist/tsconfig.json",
"scripts": {
"build": "tsx script/build",
"schema:update": "tsx script/updateJsonDefinition",
"schema:generate": "tsx script/generateSchema",
"lint": "biome check",
"format": "biome format --write",
"types": "tsc",
"release": "pnpm build && pnpm types && pnpm lint && commit-and-tag-version"
},
"keywords": [
"typescript",
"typescript-config"
],
"type": "module",
"repository": {
"url": "https://github.com/cookielab/typescript-config"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
"peerDependencies": {
"typescript": ">=6.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@commitlint/types": "20.3.1",
"@cookielab.io/biome-config": "1.3.0",
"@types/node": "25.0.9",
"commit-and-tag-version": "12.6.1",
"json-schema-to-typescript": "15.0.4",
"ts-to-zod": "5.1.0",
"tsx": "4.21.0",
"zod": "4.3.5"
}
}