mirror of
https://github.com/dergigi/boris.git
synced 2026-01-31 12:44:37 +01:00
- Update package.json version from 0.1.0 to 0.0.1 - This represents the initial MVP release of markr
32 lines
886 B
JSON
32 lines
886 B
JSON
{
|
|
"name": "markr",
|
|
"version": "0.0.1",
|
|
"description": "A minimal nostr client for bookmark management",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"applesauce-core": "^3.1.0",
|
|
"applesauce-react": "^3.1.0",
|
|
"nostr-tools": "^2.4.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.43",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.8"
|
|
}
|
|
}
|