Files
notesnook/packages/clipper/package.json

39 lines
963 B
JSON
Raw Permalink Normal View History

{
"name": "@notesnook/clipper",
2024-09-23 15:47:09 +05:00
"version": "2.1.3",
"description": "Web clipper core used by the Notesnook Web Clipper",
"keywords": [
"web-clipper"
],
"author": "Abdullah Atta <abdullahatta@streetwriters.co>",
"homepage": "https://notesnook.com/",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"devDependencies": {
"@playwright/test": "1.48.2",
2025-10-08 08:42:00 +05:00
"@rsbuild/core": "^1.5.13",
"slugify": "1.6.6"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/notesnook.git"
},
"scripts": {
2025-10-08 08:42:00 +05:00
"build": "tsc && npx rsbuild build",
2024-06-05 10:28:28 +05:00
"prepublishOnly": "npm run build",
"test": "playwright test",
"postinstall": "patch-package",
"watch": "tsc --watch"
},
"bugs": {
"url": "https://github.com/streetwriters/notesnook/issues"
},
"dependencies": {
"@mozilla/readability": "^0.4.2",
"hyperapp": "^2.0.22"
}
2025-10-08 08:42:00 +05:00
}