Files
notesnook/packages/ui/package.json
Abdullah Atta 5fe366f4f3 global: use same versions for dependencies everywhere (#7365)
* global: use same versions for dependencies everywhere

* intl: fix `Cannot find module '@lingui/macro'`

* web: fix `I18n' is not assignable to parameter` type error

* setup: log post install cmd

* setup: more logging

* web: update lockfile
2025-01-21 09:35:38 +05:00

53 lines
1.3 KiB
JSON

{
"name": "@notesnook/ui",
"version": "2.1.3",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "GPL-3.0-or-later",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "git://github.com/streetwriters/notesnook.git"
},
"dependencies": {
"@notesnook/theme": "file:../theme"
},
"devDependencies": {
"mac-scrollbar": "0.13.6",
"@mdi/js": "7.4.47",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/react-modal": "3.16.3",
"@theme-ui/components": "0.16.1",
"@theme-ui/core": "0.16.1",
"@emotion/react": "11.11.1",
"react-modal": "3.16.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"peerDependencies": {
"mac-scrollbar": ">=0.10",
"react-modal": ">=3",
"@mdi/js": ">=7",
"@emotion/react": ">=11",
"@theme-ui/components": ">=0.16",
"@theme-ui/core": ">=0.16",
"react": ">=18",
"react-dom": ">=18"
},
"scripts": {
"build": "tsup-node src/index.ts",
"prepublishOnly": "npm run build",
"watch": "npm run build -- --watch"
}
}