Files
ts-roots/package.json

32 lines
631 B
JSON

{
"name": "@wisehodl/roots",
"version": "0.1.0",
"description": "A minimal Nostr protocol library for typescript",
"types": "./dist/types.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.2"
}
}