This repository was archived by the owner on Feb 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.97 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.97 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
{
"name": "@tsxo/envy",
"version": "0.6.1",
"author": "TSxo",
"license": "MIT",
"description": "A lightweight, zero dependancy, and typesafe way to retrieve environment variables.",
"keywords": [
"envy",
"env",
"environment",
"manager",
"safe",
"typesafe",
"convert",
"conversion",
"assert",
"typescript",
"zero-dependency"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TSxo/envy.git"
},
"bugs": {
"url": "https://github.com/TSxo/envy/issues"
},
"homepage": "https://github.com/TSxo/envy",
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:all && npm run format",
"build:all": "npm run build:types && npm run build:esm && npm run build:cjs && node scripts/generate-package-files.mjs",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"format": "biome format --write",
"format:check": "biome format",
"lint": "biome check",
"exports": "attw --pack .",
"test": "vitest run --reporter=verbose",
"coverage": "vitest run --coverage",
"dev": "vitest",
"ci": "npm run build && npm run format:check && npm run lint && npm run exports && npm test",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@biomejs/biome": "2.3.4",
"@changesets/cli": "^2.29.4",
"@types/node": "^22.15.18",
"@vitest/coverage-v8": "^3.1.3",
"typescript": "^5.8.3",
"vitest": ">=3.1.3"
}
}