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

33 lines
784 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"
},
"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 12:04:42 +02:00
"execa": "5.1.1",
2023-04-05 22:48:17 +02:00
"fs-extra": "11.1.1",
2023-04-04 12:04:42 +02:00
"node-fetch": "2.6.7"
2023-03-30 18:12:27 +02:00
},
"devDependencies": {
"@types/jest": "29.5.1",
"@types/node-fetch": "2.6.3",
2023-03-30 18:12:27 +02:00
"jest": "29.5.0",
"ts-jest": "29.1.0"
2023-03-30 18:12:27 +02:00
}
}