-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 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
{
"name": "envlt",
"version": "0.2.1",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"bin": {
"envlt": "./dist/bin/envlt.js"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"dev": "tsc --watch",
"test": "node --import tsx --experimental-vm-modules --test 'src/**/*.test.ts' 'tests/**/*.test.ts'",
"test:coverage": "c8 --include=src/** --exclude=**/*.test.ts --exclude=tests/** --exclude=scripts/** npm test",
"test:coverage:ci": "c8 --include=src/** --exclude=**/*.test.ts --exclude=tests/** --exclude=scripts/** --check-coverage --lines 90 --branches 90 --functions 90 --statements 90 npm test",
"audit": "npm audit --audit-level=high",
"lint": "eslint .",
"review:prompt": "node scripts/pr-review-to-codex-prompt.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"precommit": "lint-staged",
"prepare": "husky",
"lint:staged": "eslint --fix"
},
"lint-staged": {
"*.{ts}": [
"npm run lint:staged --",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.3",
"inquirer": "13.3.0"
},
"devDependencies": {
"@types/node": "25.4.0",
"@types/sinon": "21.0.0",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"c8": "11.0.0",
"eslint": "10.0.3",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"prettier": "3.8.1",
"sinon": "21.0.2",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}