-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dotenv-store",
"version": "1.0.2",
"description": "A secure environment variables manager that encrypts and stores environment variables in a file, keeping your sensitive data safe",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"dotenv-store": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"test": "./scripts/test-cli.sh",
"prepublishOnly": "npm run build",
"example": "ts-node examples/basic-usage.ts",
"example:config": "ts-node examples/config-usage.ts",
"example:algorithm": "ts-node examples/algorithm-usage.ts",
"example:tracking": "ts-node examples/algorithm-tracking.ts",
"test-cli": "./scripts/test-cli.sh",
"release:patch": "git add . && git commit -m 'chore: prepare for release' && npm version patch && git push origin main --tags && npm publish",
"release:minor": "git add . && git commit -m 'chore: prepare for release' && npm version minor && git push origin main --tags && npm publish",
"release:major": "git add . && git commit -m 'chore: prepare for release' && npm version major && git push origin main --tags && npm publish"
},
"keywords": [
"env",
"environment",
"variables",
"encrypt",
"secure",
"storage",
"secrets",
"security"
],
"homepage": "https://github.com/omkar273/dotenv-store",
"author": "Omkar Sonawane",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omkar273/dotenv-store.git"
},
"bugs": {
"url": "https://github.com/omkar273/dotenv-store/issues"
},
"activationEvents": [
"onStartupFinished"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.8.10",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"dependencies": {
"commander": "^13.1.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"fs-extra": "^11.1.1",
"path": "^0.12.7"
}
}