-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.55 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.55 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@mqxym/cryptit",
"version": "2.2.9",
"repository": "https://github.com/mqxym/cryptit",
"description": "Modern, cross-platform AES-GCM 256 / XChaCha20Poly1305 + Argon2-id encryption for files and text.",
"type": "module",
"keywords": [
"utility",
"cli",
"typescript",
"bun",
"crossplatform"
],
"homepage": "https://github.com/mqxym/cryptit",
"bugs": {
"url": "https://github.com/mqxym/cryptit/issues"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"main": "dist/cryptit.index.cjs",
"module": "dist/cryptit.index.js",
"types": "dist/types/node/node-runtime/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build:dts": "tsc -b packages/core packages/browser-runtime packages/node-runtime",
"build": "bun run build:js && bun run build:dts",
"build:js": "bun run bun.build.js",
"dev": "bun build bun.build.js --watch",
"test": "bun test",
"test-example:e2e": "E2E_HEADLESS=0 python3 -m unittest -v tests/examples_text_e2e_tests.py",
"audit": "bun audit",
"lint": "eslint . --ext .ts",
"cli:run": "bun run packages/node-runtime/src/cli.ts"
},
"engines": {
"bun": ">=1.2.22",
"node": ">=22"
},
"dependencies": {
"@noble/ciphers": "^2.2.0",
"argon2-browser": "^1.18.0",
"commander": "^14.0.3",
"tslib": "^2.8.1"
},
"optionalDependencies": {
"@node-rs/argon2": "^2.0.2"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"execa": "^9.6.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"exports": {
".": {
"types": "./dist/types/node/node-runtime/index.d.ts",
"import": "./dist/cryptit.index.js",
"require": "./dist/cryptit.index.cjs"
},
"./browser": {
"types": "./dist/types/browser/browser-runtime/index.d.ts",
"import": "./dist/browser/cryptit.browser.min.js",
"require": "./dist/browser/cryptit.browser.min.js"
},
"./cli": {
"default": "./dist/cli/cryptit.cli.js"
},
"./*.wasm": "./dist/browser/*.wasm"
},
"bin": {
"cryptit": "./dist/cli/cryptit.cli.js"
}
}