joplin/packages/utils/package.json

36 lines
867 B
JSON
Raw Permalink Normal View History

{
2023-03-30 16:12:27 +00:00
"name": "@joplin/utils",
2023-06-28 14:12:32 +00:00
"version": "2.12.0",
2023-03-30 16:12:27 +00:00
"description": "Utilities for Joplin",
"repository": "https://github.com/laurent22/joplin/tree/dev/packages/utils",
"exports": {
".": "./dist/index.js",
"./net": "./dist/net.js",
"./fs": "./dist/fs.js"
2023-03-30 16:12:27 +00:00
},
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"test": "jest --verbose=false",
"test-ci": "yarn test"
},
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
2023-04-04 10:04:42 +00:00
"execa": "5.1.1",
2023-04-05 20:48:17 +00:00
"fs-extra": "11.1.1",
"glob": "10.2.7",
2023-04-04 10:04:42 +00:00
"node-fetch": "2.6.7"
2023-03-30 16:12:27 +00:00
},
"devDependencies": {
2023-07-16 16:48:13 +00:00
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.1",
"@types/node-fetch": "2.6.3",
2023-03-30 16:12:27 +00:00
"jest": "29.5.0",
"ts-jest": "29.1.0"
2023-03-30 16:12:27 +00:00
}
}