-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.87 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
86
{
"name": "crypto-es",
"version": "3.1.2",
"description": "A cryptography algorithms library",
"keywords": [
"security",
"crypto",
"cipher",
"Hash",
"MD5",
"SHA1",
"SHA-1",
"SHA2",
"SHA-2",
"SHA3",
"SHA-3",
"SHA256",
"SHA-256",
"RC4",
"Rabbit",
"AES",
"DES",
"3DES",
"TripleDES",
"PBKDF2",
"HMAC",
"HEX",
"Base64",
"Base64url",
"blowfish"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"build:verbose": "sh -c 'tsdown 2>&1'",
"build:watch": "tsdown --watch",
"typecheck": "tsc --noEmit",
"typecheck:verbose": "sh -c 'tsc --noEmit 2>&1'",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:verbose": "sh -c 'vitest run 2>&1'",
"dev": "npm run build:watch",
"lint": "npm run typecheck",
"check": "npm run typecheck && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entronad/crypto-es.git"
},
"author": "LIN Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/entronad/crypto-es/issues"
},
"homepage": "https://github.com/entronad/crypto-es#readme",
"devDependencies": {
"@vitest/ui": "^3.2.4",
"publint": "^0.3.12",
"tsdown": "^0.14.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0"
}