-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "blockcrypt",
"version": "0.0.1-beta.23",
"description": "Encrypt one or more secrets with plausible deniability by design.",
"main": "dist/index.js",
"files": [
"dist/",
"package.json",
"LICENCE",
"README.md"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.32",
"jest": "^29.7.0",
"npm-check-updates": "^17.1.18",
"typescript": "^5.8.3"
},
"scripts": {
"code": "tsc -w",
"build": "rm -fr dist/*; tsc",
"test": "jest dist/test.js",
"prepublishOnly": "npm run build",
"ncu": "ncu --target minor --upgrade"
},
"author": "Sun Knudsen <hello@sunknudsen.com>",
"license": "MIT",
"keywords": [
"cryptography"
],
"repository": {
"type": "git",
"url": "https://github.com/superbacked/blockcrypt.git"
},
"bugs": {
"url": "https://github.com/superbacked/blockcrypt/issues"
},
"homepage": "https://github.com/superbacked/blockcrypt#readme",
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}