-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.54 KB
/
package.json
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "neoenv",
"version": "1.3.0",
"description": "🔐 Lightweight, zero-dependency, new generation module for hassle free, clean, typed and safe environment variables management for modern developers 🔥 Supercharge your .env using neoenv with more advanced controls and powers ☄️🚀",
"author": {
"name": "Niloy Sikdar",
"email": "[email protected]",
"url": "https://github.com/niloysikdar"
},
"repository": {
"type": "git",
"url": "https://github.com/niloysikdar/neoenv.git"
},
"bugs": {
"url": "https://github.com/niloysikdar/neoenv/issues"
},
"homepage": "https://github.com/niloysikdar/neoenv#readme",
"readme": "https://github.com/niloysikdar/neoenv#readme",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"bin": "dist/cjs/generate.js",
"scripts": {
"prepare": "husky install",
"watch": "tsc --watch",
"ts-types": " tsc --emitDeclarationOnly --outDir dist/types",
"build": "rm -rf dist && yarn ts-types && node build.js",
"postbuild": "chmod u+rx ./postbuild.sh && ./postbuild.sh",
"release": "semantic-release --branches main",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"pretty": "prettier --check .",
"pretty:fix": "prettier --write .",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"cm": "cz -s"
},
"lint-staged": {
"src/**": [
"yarn pretty:fix",
"yarn lint:fix",
"yarn pretty",
"yarn lint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"cz-conventional-changelog": "^3.3.0",
"dts-minify": "^0.3.2",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"typescript": "^5.0.4"
},
"keywords": [
"neoenv",
"env",
".env",
"dotenv",
"environment",
"variables",
"config",
"settings",
"node",
"typescript",
"javascript",
"autocomplete",
"intellisense",
"code completion"
]
}