Files
notesnook/packages/common/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2023-06-10 12:17:23 +05:00
{
"name": "@notesnook/common",
2024-09-23 15:47:09 +05:00
"version": "2.1.3",
2023-06-10 12:17:23 +05:00
"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"
}
},
2023-06-10 12:17:23 +05:00
"scripts": {
"prepublishOnly": "npm run build",
"build": "node ../../scripts/build.mjs",
"watch": "npm run build -- --watch"
2023-06-10 12:17:23 +05:00
},
"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"
2023-06-10 12:17:23 +05:00
},
"peerDependencies": {
"react": ">=18",
"timeago.js": "4.0.2"
2023-06-10 12:30:31 +05:00
},
"dependencies": {
"@notesnook/core": "file:../core",
"@readme/data-urls": "^3.0.0",
"dayjs": "1.11.13",
"pathe": "^1.1.2",
"timeago.js": "4.0.2"
2023-06-10 12:17:23 +05:00
}
}