-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "dotvar",
"version": "1.0.1",
"description": "Environment variables from .evn",
"main": "dist/src/main.js",
"module": "dist/src/main.js",
"scripts": {
"dev": "tsc --watch -p tsconfig.json",
"start": "tsc -p tsconfig.json"
},
"author": "Elmer Alluad Jr",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.0",
"eslint": "^8.34.0",
"typescript": "^4.9.5"
},
"keywords": [
"dotvar",
"env",
"environment",
"variables",
"JavaScript Environment Variables",
"JavaScript Environment Variables from .env",
"Node Environment Variables",
"Node Environment Variables from .env",
".env",
"settings",
"config",
"dotenv"
],
"readmeFilename": "README.md",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xkid1/dotvar.git"
},
"bugs": {
"url": "https://github.com/xkid1/dotvar/issues"
},
"types": "main.d.ts",
"tsd": {
"directory": "main.d.ts"
},
"files": [
"dist/"
],
"homepage": "https://github.com/xkid1/dotvar#readme"
}