-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
74
75
76
{
"name": "@kobapi28/tsenv",
"version": "1.4.0",
"description": "Type-check environment variables against TypeScript schemas",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tsenv": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/post-build.js",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type:check": "tsc --noEmit",
"biome:check": "biome check .",
"biome:format": "biome format --write .",
"biome:lint": "biome lint .",
"check": "pnpm type:check && pnpm biome:check",
"prepare": "lefthook install"
},
"keywords": [
"typescript",
"env",
"environment",
"variables",
"type-check",
"validation",
"cli"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kobapi28/tsenv.git"
},
"bugs": {
"url": "https://github.com/kobapi28/tsenv/issues"
},
"homepage": "https://github.com/kobapi28/tsenv#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.11.1",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@evilmartians/lefthook": "1.11.16",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.4",
"@semantic-release/npm": "12.0.2",
"@types/node": "22.15.33",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"semantic-release": "24.2.7",
"tsx": "4.20.4",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"dependencies": {
"chalk": "5.4.1",
"commander": "14.0.0",
"dotenv": "16.5.0",
"glob": "11.0.3"
}
}