1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-08 13:06:15 +02:00
joplin/packages/utils/package.json

40 lines
982 B
JSON
Raw Normal View History

{
2023-03-30 18:12:27 +02:00
"name": "@joplin/utils",
2023-06-28 16:12:32 +02:00
"version": "2.12.0",
2023-03-30 18:12:27 +02: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",
"./Logger": "./dist/Logger.js"
2023-03-30 18:12:27 +02: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": {
"async-mutex": "0.4.0",
2023-04-04 12:04:42 +02:00
"execa": "5.1.1",
2023-04-05 22:48:17 +02:00
"fs-extra": "11.1.1",
"glob": "10.3.0",
"moment": "2.29.4",
"node-fetch": "2.6.7",
"sprintf-js": "1.1.2"
2023-03-30 18:12:27 +02:00
},
"devDependencies": {
2023-07-16 18:48:13 +02:00
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.3",
"@types/node-fetch": "2.6.4",
2023-03-30 18:12:27 +02:00
"jest": "29.5.0",
"ts-jest": "29.1.1"
2023-03-30 18:12:27 +02:00
}
}