-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
54
55
56
57
{
"name": "age-encryption",
"version": "0.2.0",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FiloSottile/typage.git"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"keywords": [
"age",
"file encryption",
"cryptography"
],
"dependencies": {
"@noble/ciphers": "^1.2.0",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@scure/base": "^1.1.5"
},
"scripts": {
"test": "vitest --run",
"test:short": "vitest --run --project node",
"examples:node": "cd tests/examples && npm update && npm run test:node",
"examples:bun": "cd tests/examples && bun update --no-save && bun run test:bun",
"examples:esbuild": "cd tests/examples && npm update && npm run test:esbuild",
"bench": "vitest bench --run",
"lint": "eslint .",
"build": "tsc -p tsconfig.build.json",
"docs": "typedoc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@fast-check/vitest": "0.1.4",
"@stylistic/eslint-plugin": "2.12.1",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"@vitest/browser": "2.1.8",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-plugin-tsdoc": "0.4.0",
"typedoc": "0.27.6",
"typedoc-plugin-markdown": "4.4.1",
"typescript": "5.7.2",
"vitest": "2.1.8",
"webdriverio": "9.5.1"
},
"author": "Filippo Valsorda <[email protected]> (https://filippo.io)",
"license": "BSD-3-Clause"
}