forked from RSoraM/mima-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 2.65 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "mima-kit",
"type": "module",
"version": "0.0.10",
"packageManager": "[email protected]",
"description": "mima-kit is a cryptographic suite implemented in TypeScript. The goal is to provide an easy-to-use cryptographic library. mima-kit 是一个使用 TypeScript 实现的密码学套件。目标是提供一个简单易用的密码学库。",
"author": "RSoraM",
"license": "MIT",
"homepage": "https://github.com/RSoraM/mima-kit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RSoraM/mima-kit.git"
},
"bugs": "https://github.com/RSoraM/mima-kit/issues",
"keywords": [
"cryptography",
"hash",
"sm3",
"md5",
"sha1",
"sha2",
"sha3",
"shake",
"cShake",
"tupleHash",
"parallelHash",
"TurboHash",
"KangarooTwelve",
"hmac",
"kmac",
"blockCipher",
"sm4",
"aes",
"des",
"aria",
"camellia",
"arc5",
"blowfish",
"twofish",
"tea",
"xtea",
"streamCipher",
"zuc",
"rc4",
"rabbit",
"salsa20",
"rsa",
"sm2",
"ecdh",
"ecmqv",
"ecdsa",
"ecies",
"X9.63 KDF",
"HKDF",
"PBKDF2"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"postbuild": "tsc",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"test:browser": "vitest"
},
"dependencies": {
"asn1js": "^3.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@antfu/ni": "^0.21.12",
"@testing-library/dom": "^10.4.0",
"@testing-library/vue": "^8.1.0",
"@types/node": "^20.17.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^2.1.8",
"bumpp": "^9.9.1",
"eslint": "^8.57.1",
"esno": "^4.8.0",
"lint-staged": "^15.2.11",
"playwright": "^1.49.1",
"pnpm": "^9.15.0",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"webdriverio": "^9.4.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}