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
|
{
"type": "module",
"name": "bun-polyfills",
"module": "src/index.ts",
"scripts": {
"node": "tsx --no-warnings --enable-source-maps --import ./dist/src/repl.js",
"test": "node --no-warnings --loader ./tools/bun_test_loader.mjs",
"clean": "rm -rf dist",
"preprocess": "bun tools/updateversions.ts",
"build": "bun run clean && bun run preprocess && bunx tsc && bunx copyfiles \"./lib/**/*.wasm\" dist",
"build/wasm": "bun run build/zighash",
"build/zighash": "cd lib/zighash && bun run build && cd ../.."
},
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/node": "^20.7.2",
"@types/which": "^3.0.0",
"bun-types": "^1.0.3",
"copyfiles": "^2.4.1",
"tsx": "^3.13.0",
"typings-esm-loader": "^2.0.1"
},
"peerDependencies": {
"typescript": "^5.2.2"
},
"dependencies": {
"argon2": "^0.31.1",
"bcryptjs": "^2.4.3",
"bun-wasm": "link:bun-wasm",
"chalk": "^5.3.0",
"expect": "^29.7.0",
"js-md4": "^0.3.2",
"koffi": "^2.6.1",
"mmap-utils": "^1.0.0",
"open-editor": "^4.1.1",
"supports-color": "^9.4.0",
"which": "^4.0.0"
}
}
|