-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.59 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
{
"name": "@ardislu/envpass",
"version": "0.1.3",
"description": "A CLI and library to encrypt your .env file using a passkey and decrypt it when needed during application execution.",
"keywords": [
"env",
"dotenv",
"passkey"
],
"author": "Ardis Lu",
"repository": {
"type": "git",
"url": "git+https://github.com/ardislu/envpass.git"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=26.0.0"
},
"packageManager": {
"name": "npm",
"version": ">=11.15.0"
}
},
"files": [
"./types/*",
"./src/*"
],
"imports": {
"#src/*.js": "./src/*.js",
"#test/*.js": "./test/*.js"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./decrypt": {
"default": "./src/decrypt.js"
}
},
"types": "./types/index.d.ts",
"bin": {
"envpass": "src/cli.js"
},
"scripts": {
"types": "tsc",
"types:check": "tsc --noEmit --checkJS",
"pretest": "playwright-core install",
"test": "node --test",
"test:coverage": "npm run test -- --experimental-test-coverage",
"prepack": "node ./npm/prepack.js",
"postpack": "node ./npm/postpack.js",
"pack:dev": "npm run prepack -- --dev && npm pack",
"start": "node ./src/cli.js"
},
"dependencies": {
"commander": "^15.0.0",
"open": "^11.0.0"
},
"devDependencies": {
"@types/node": "^25.9.3",
"playwright-core": "^1.61.0",
"typescript": "^6.0.3",
"undici": "^8.5.0"
}
}