mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
29 lines
645 B
JSON
29 lines
645 B
JSON
{
|
|
"name": "@standardnotes/toast",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"scripts": {
|
|
"build": "yarn tsc",
|
|
"clean": "rm -fr dist",
|
|
"prestart": "yarn clean",
|
|
"start": "tsc -p tsconfig.json --watch",
|
|
"tsc": "tsc --project tsconfig.json",
|
|
"prebuild": "yarn clean",
|
|
"lint": "eslint ./src"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"dependencies": {
|
|
"@nanostores/react": "^0.2.0",
|
|
"@standardnotes/icons": "^1.3.0",
|
|
"nanoid": "^3.3.4",
|
|
"nanostores": "^0.5.12"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "*",
|
|
"typescript": "*"
|
|
}
|
|
}
|