Files
jazz-tools/package.json
2023-08-10 11:56:15 +01:00

36 lines
1.1 KiB
JSON

{
"name": "cojson",
"module": "dist/index.mjs",
"main": "dist/index.mjs",
"types": "src/index.ts",
"type": "module",
"license": "MIT",
"version": "0.0.7",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"esbuild": "^0.19.0",
"eslint": "^8.46.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "5.0.2"
},
"dependencies": {
"@noble/ciphers": "^0.1.3",
"@noble/curves": "^1.1.0",
"@noble/hashes": "^1.3.1",
"@scure/base": "^1.1.1",
"fast-json-stable-stringify": "^2.1.0",
"isomorphic-streams": "https://github.com/sgwilym/isomorphic-streams.git#aa9394781bfc92f8d7c981be7daf8af4b4cd4fae"
},
"scripts": {
"test": "jest",
"build": "esbuild `find src \\( -name '*.ts' -o -name '*.tsx' \\)` --out-extension:.js=.mjs --platform=node --target=node14 --outdir=dist"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}