-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "@hicaru/chacharand.js",
"version": "0.0.3",
"description": "Pure JavaScript implementation of ChaCha8/12/20 random number generator",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": ["dist"],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "tsc",
"format": "prettier --write ./**/*.{js,ts,test.ts}",
"build:watch": "tsc --watch"
},
"keywords": [
"chacha",
"chacha8",
"chacha12",
"chacha20",
"random",
"crypto",
"pure-js",
"prng",
"cryptography",
"rng",
"stream-cipher"
],
"author": "Rinat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openzebra/chacha.js.git"
},
"bugs": {
"url": "https://github.com/openzebra/chacha.js/issues"
},
"homepage": "https://github.com/openzebra/chacha.js#readme",
"devDependencies": {
"@types/bun": "^1.2.9",
"@vitest/coverage-v8": "^3.1.1",
"prettier": "^3.5.3",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}