-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"name": "yargs-env-var-example",
"version": "1.0.0",
"description": "An example of yargs library usage to read environment variables",
"license": "ISC",
"author": "Dietmar H",
"type": "module",
"main": "build/index.js",
"scripts": {
"test": "vitest --run",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^22.7.5",
"@types/yargs": "^17.0.33",
"gts": "^6.0.2",
"typescript": "^5.8.3",
"unplugin-auto-import": "^19.3.0",
"vitest": "^3.2.4",
"yargs": "^18.0.0"
}
}