-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.77 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
{
"name": "guard-env",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/BadEnd777/guard-env.git"
},
"bugs": {
"url": "https:/github.com/BadEnd777/guard-env/issues"
},
"author": {
"name": "BadEnd777",
"email": "badend777@proton.me"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"environment-variables",
"type-checking",
"configuration",
"Node.js",
"typescript",
"dotenv"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"format:fix": "prettier --write . --list-different",
"lint": "eslint . --ext .ts",
"prepare": "husky",
"prerelease": "pnpm build && pnpm test && changeset add && changeset version && pnpm format:fix",
"release": "pnpm build && changeset publish",
"test": "jest --clearCache && jest --detectOpenHandles",
"unimported": "unimported"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-pkg": "^0.18.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"unimported": "^1.31.1",
"validate-branch-name": "^1.3.0"
}
}