mirror of
https://github.com/dergigi/boris.git
synced 2026-02-07 16:14:39 +01:00
- Add project structure with TypeScript, React, and Vite - Implement nostr authentication using browser extension (NIP-07) - Add NIP-51 compliant bookmark fetching and display - Create minimal UI with login and bookmark components - Integrate applesauce-core and applesauce-react libraries - Add responsive styling with dark/light mode support - Include comprehensive README with setup instructions This is a minimal MVP for a nostr bookmark client that allows users to view their bookmarks according to NIP-51 specification.
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "@cashu/cashu-ts",
|
|
"version": "2.0.0-rc1",
|
|
"description": "cashu library for communicating with a cashu mint",
|
|
"main": "dist/lib/es5/index.js",
|
|
"module": "dist/lib/es6/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cashubtc/cashu-ts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/cashubtc/cashu-ts/issues"
|
|
},
|
|
"scripts": {
|
|
"compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json",
|
|
"test": "jest --coverage --testPathIgnorePatterns ./test/integration.test.ts",
|
|
"test-integration": "jest --coverage --testPathPattern ./test/integration.test.ts",
|
|
"dev": "tsc --watch",
|
|
"lint": "eslint --ext .js,.ts . --fix",
|
|
"format": "prettier --write .",
|
|
"check-format": "prettier --check .",
|
|
"typedoc": "typedoc src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"cashu"
|
|
],
|
|
"author": "gandlaf21",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node-fetch": "^2.6.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-standard-with-typescript": "^34.0.1",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-n": "^15.7.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"jest": "^29.5.0",
|
|
"nock": "^13.3.3",
|
|
"node-fetch": "^2.7.0",
|
|
"prettier": "^2.8.8",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-jest-resolver": "^2.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.24.7",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@cashu/crypto": "^0.2.7",
|
|
"@noble/curves": "^1.3.0",
|
|
"@noble/hashes": "^1.3.3",
|
|
"@scure/bip32": "^1.3.3",
|
|
"buffer": "^6.0.3"
|
|
}
|
|
}
|