-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 893 Bytes
/
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
{
"name": "@cm-ayf/readenv",
"version": "1.2.0",
"description": "type-friendly utility for reading environment variable",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"prepare": "npm run format && npm run build",
"format": "npx prettier --write **/*.ts"
},
"keywords": [
"env"
],
"author": "cm-ayf",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.0",
"prettier": "^2.5.1",
"typescript": "^4.8.3"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cm-ayf/readenv.git"
},
"bugs": {
"url": "https://github.com/cm-ayf/readenv/issues"
},
"homepage": "https://github.com/cm-ayf/readenv#readme"
}