-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "@cyclic.sh/secure-file",
"version": "0.0.1",
"description": "Store files securely with a password",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"bin": {
"secure-file": "bin/secure-file"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/secure-file.git"
},
"author": {
"name": "Cyclic Software",
"url": "https://www.cyclic.sh"
},
"contributors": [
"Kam Lasater (https://github.com/seekayel)"
],
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && config/generate-package-json.sh",
"cli:encrypt": "env-cmd node dist/esm/cli.js encryptFile account.json",
"prepublishOnly": "node config/prepublish.js",
"postpublish": "git restore package.json"
},
"keywords": [],
"license": "GPLV3",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"env-cmd": "^10.1.0",
"semantic-release": "^21.0.3",
"typescript": "^5.1.3"
},
"files": [
"dist/",
"bin/"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}