-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.08 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.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
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
85
{
"name": "@azemzemi/cryptobox",
"version": "1.0.1",
"type": "module",
"description": "Zero-dependency encryption library for JavaScript & TypeScript. Secure localStorage, sessionStorage, or any data with AES-256-GCM encryption. Production-ready with 93% test coverage.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"examples/**/*.ts\"",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build"
},
"keywords": [
"encryption",
"storage",
"security",
"web-crypto",
"aes-gcm",
"aes-256",
"pbkdf2",
"crypto",
"secure-storage",
"token",
"vault",
"cryptography",
"typescript",
"browser",
"nodejs",
"deno",
"bun"
],
"author": {
"name": "Adel Zemzemi",
"url": "https://github.com/zemzemi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zemzemi/cryptobox.git"
},
"bugs": {
"url": "https://github.com/zemzemi/cryptobox/issues"
},
"homepage": "https://github.com/zemzemi/cryptobox#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.0",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.7.0",
"typescript-eslint": "^8.15.0",
"vitest": "^4.0.14"
}
}