Files
notesnook/packages/common/package.json

45 lines
1.0 KiB
JSON
Raw Normal View History

2023-06-10 12:17:23 +05:00
{
"name": "@notesnook/common",
"version": "1.0.0",
"description": "A set of common utilities shared across multiple Notesnook clients and services.",
"main": "dist/index.js",
"scripts": {
"pub": "tsc && np",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/notesnook.git"
},
"keywords": [
"logger"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/streetwriters/notesnook/issues"
},
"homepage": "https://github.com/streetwriters/notesnook#readme",
"np": {
"tests": false,
"releaseDraft": false,
"message": "chore: bump version to %s"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"devDependencies": {
2023-07-06 09:09:10 +05:00
"@notesnook/core": "file:../core",
2023-11-30 15:02:37 +05:00
"react": "18.2.0",
"@types/react": "^18.2.39"
2023-06-10 12:17:23 +05:00
},
"peerDependencies": {
"timeago.js": "4.0.2",
2023-11-30 15:02:37 +05:00
"react": ">=18"
2023-06-10 12:30:31 +05:00
},
"dependencies": {
"timeago.js": "4.0.2",
2023-07-06 09:09:10 +05:00
"@notesnook/core": "file:../core"
2023-06-10 12:17:23 +05:00
}
}