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
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@notesnook/common",
|
|
"version": "2.1.3",
|
|
"description": "A set of common utilities shared across multiple Notesnook clients and services.",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"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"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "node ../../scripts/build.mjs",
|
|
"watch": "npm run build -- --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/streetwriters/notesnook.git"
|
|
},
|
|
"license": "GPL-3.0-or-later",
|
|
"bugs": {
|
|
"url": "https://github.com/streetwriters/notesnook/issues"
|
|
},
|
|
"homepage": "https://github.com/streetwriters/notesnook#readme",
|
|
"devDependencies": {
|
|
"@notesnook/core": "file:../core",
|
|
"@types/react": "18.3.5",
|
|
"react": "18.3.1",
|
|
"vitest": "2.1.8"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18",
|
|
"timeago.js": "4.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@notesnook/core": "file:../core",
|
|
"@readme/data-urls": "^3.0.0",
|
|
"dayjs": "1.11.13",
|
|
"pathe": "^1.1.2",
|
|
"timeago.js": "4.0.2"
|
|
}
|
|
} |