-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 989 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 989 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@flaviengibs/fixenv",
"version": "0.1.1",
"description": "Fix and standardize your local dev environment",
"keywords": ["cli", "devtools", "environment", "setup", "dx"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flaviengibs/fixenv"
},
"homepage": "https://github.com/flaviengibs/fixenv#readme",
"engines": {
"node": ">=18"
},
"bin": {
"fixenv": "./dist/bin/fixenv.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup bin/fixenv.ts src/cli.ts --format cjs --out-dir dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"dev": "tsx bin/fixenv.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "12.1.0",
"js-yaml": "4.1.0",
"ora": "5.4.1"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "20.14.0",
"tsup": "8.1.0",
"tsx": "4.15.6",
"typescript": "5.4.5"
}
}