@nostr-fetch/kernel
Version:
Kernel of nostr-fetch
55 lines (54 loc) • 1.28 kB
JSON
{
"name": "@nostr-fetch/kernel",
"version": "0.17.0",
"description": "Kernel of nostr-fetch",
"keywords": [
"nostr"
],
"author": "jiftechnify <jiftech.stlfy@gmail.com>",
"repository": "https://github.com/jiftechnify/nostr-fetch",
"homepage": "https://github.com/jiftechnify/nostr-fetch#readme",
"bugs": {
"url": "https://github.com/jiftechnify/nostr-fetch/issues"
},
"license": "MIT",
"type": "module",
"main": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"./*": {
"module": "./src/*.ts",
"import": "./src/*.ts",
"types": "./dist/*.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.ts"
]
}
},
"files": [
"dist",
"src"
],
"scripts": {
"prepack": "npm run build",
"test": "vitest run",
"testw": "vitest",
"tsc": "tsc",
"lint": "run-p tsc lint:*",
"lint:format": "biome format ./src",
"lint:js": "biome lint ./src",
"fix": "run-s fix:*",
"fix:format": "biome format --write ./src",
"fix:js": "biome lint --apply ./src",
"build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@noble/curves": "^1.1.0",
"@noble/hashes": "^1.2.0"
},
"gitHead": "7fb94b89783580997902bd76aee50a8295615c95"
}