-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "@leaperone/envx",
"version": "0.2.3",
"description": "A powerful environment management CLI tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"type": "module",
"bin": {
"envx": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version:patch": "pnpm version patch",
"version:minor": "pnpm version minor",
"version:major": "pnpm version major",
"release:patch": "pnpm version:patch && git push origin main --tags",
"release:minor": "pnpm version:minor && git push origin main --tags",
"release:major": "pnpm version:major && git push origin main --tags"
},
"keywords": [
"cli",
"environment",
"env",
"management"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.0",
"dependencies": {
"better-sqlite3": "^12.2.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"inquirer": "^12.9.4",
"ora": "^8.2.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.4.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}