-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.09 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
{
"name": "@freakyfelt/env-parser",
"version": "3.0.0",
"description": "Provides a simple way to parse environment variables into a typed object",
"author": {
"name": "Bruce Felt",
"url": "https://github.com/freakyfelt/env-parser"
},
"contributors": [],
"homepage": "https://github.com/freakyfelt/env-parser",
"bugs": "https://github.com/freakyfelt/env-parser/issues",
"repository": {
"url": "https://github.com/freakyfelt/env-parser"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.cts",
"scripts": {
"build": "tsdown",
"build:check": "tsdown --publint --attw",
"clean": "rm -rf ./dist",
"ci": "npm run format:check && npm run lint && npm run test:ci && npm run build:check",
"format": "prettier --log-level warn --write \"**/*.{ts,md}\"",
"format:check": "prettier --log-level warn --check \"**/*.{ts,md}\"",
"lint": "eslint . --cache --ext .ts,.tsx && tsc --noEmit",
"lint:fix": "eslint . --cache --fix --ext .ts,.tsx",
"prepublishOnly": "npm run build",
"test": "tsc && npm run test:only -- src/*.test.ts",
"test:only": "node --test",
"test:ci": "tsc && npm run test:only -- src/*.test.ts",
"posttest": "npm run format && npm run lint:fix"
},
"keywords": [
"env",
"process",
"parser"
],
"devDependencies": {
"@arethetypeswrong/core": "^0.18.5",
"@eslint/js": "^10.0.1",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.20.1",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"attw": "^1.0.0",
"eslint": "^10.7.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"publint": "^0.3.21",
"tsdown": "^0.22.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs"
}