mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-15 19:27:51 +01:00
* 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
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@notesnook/theme",
|
|
"version": "2.1.3",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"license": "GPL-3.0-or-later",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
}
|
|
},
|
|
"./*": {
|
|
"require": {
|
|
"types": "./dist/types/*",
|
|
"default": "./dist/cjs/*"
|
|
},
|
|
"import": {
|
|
"types": "./dist/types/*",
|
|
"default": "./dist/esm/*"
|
|
}
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/streetwriters/themeprovider.git"
|
|
},
|
|
"devDependencies": {
|
|
"@emotion/react": "11.11.1",
|
|
"@theme-ui/color": "^0.16.1",
|
|
"@theme-ui/components": "0.16.1",
|
|
"@theme-ui/core": "0.16.1",
|
|
"@trpc/server": "10.45.2",
|
|
"@types/react": "18.3.5",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"react": "18.3.1",
|
|
"ts-json-schema-generator": "^1.2.0",
|
|
"zustand": "4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": ">=11",
|
|
"@theme-ui/color": ">=0.16.0",
|
|
"@theme-ui/components": ">=0.16.0",
|
|
"@theme-ui/core": ">=0.16.0",
|
|
"react": ">=18",
|
|
"zustand": ">=4"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "node ./scripts/prebuild.mjs",
|
|
"generate": "node ./scripts/schema-generator.mjs",
|
|
"build": "node ../../scripts/build.mjs",
|
|
"prepublishOnly": "npm run build",
|
|
"watch": "npm run build -- --watch"
|
|
}
|
|
} |