-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "@wchen.ai/env-from-example",
"version": "1.1.0",
"description": "Interactive and non-interactive CLI to set up .env from .env.example",
"keywords": [
"env",
"dotenv",
"cli",
"environment",
"setup"
],
"homepage": "https://github.com/wchen02/env-from-example#readme",
"bugs": {
"url": "https://github.com/wchen02/env-from-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wchen02/env-from-example.git"
},
"license": "ISC",
"author": "Wensheng Chen",
"type": "module",
"main": "dist/env-from-example.js",
"bin": {
"env-from-example": "dist/env-from-example.js"
},
"directories": {
"test": "test"
},
"files": [
"dist",
"schema.json"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"start": "node dist/env-from-example.js",
"dev": "tsx env-from-example.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.typecheck.json",
"code-quality": "pnpm run lint && pnpm run format:check && pnpm run typecheck"
},
"dependencies": {
"@inquirer/prompts": "^5.4.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.0"
},
"packageManager": "pnpm@10.30.0"
}