1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-cli/package.json

80 lines
2.1 KiB
JSON
Raw Normal View History

2020-11-05 18:58:23 +02:00
{
2020-11-06 23:25:07 +02:00
"name": "joplin",
2020-11-05 18:58:23 +02:00
"description": "Joplin CLI Client",
"license": "MIT",
"author": "Laurent Cozic",
"private": true,
"scripts": {
"test": "jest --verbose=false --config=jest.config.js --bail --forceExit",
2020-11-29 13:29:43 +02:00
"test-one": "jest --verbose=false --config=jest.config.js --bail --forceExit",
"test-ci": "jest --config=jest.config.js --forceExit",
2020-11-05 18:58:23 +02:00
"build": "gulp build",
"start": "gulp build -L && node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev",
"start-no-build": "node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json"
2020-11-05 18:58:23 +02:00
},
"bugs": {
"url": "https://github.com/laurent22/joplin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/laurent22/joplin"
},
"copyright": {
"title": "Joplin CLI",
"years": [
2016,
2017,
2018,
2019,
2021-06-16 21:07:17 +02:00
2020,
2021
2020-11-05 18:58:23 +02:00
],
"owner": "Laurent Cozic"
},
2022-05-18 15:03:43 +02:00
"version": "2.8.1",
"bin": "./main.js",
2020-11-05 18:58:23 +02:00
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
2022-04-12 16:30:37 +02:00
"@joplin/lib": "~2.8",
"@joplin/renderer": "~2.8",
"aws-sdk": "^2.588.0",
2020-11-05 18:58:23 +02:00
"chalk": "^4.1.0",
"compare-version": "^0.1.2",
"fs-extra": "^5.0.0",
"html-entities": "^1.2.1",
"image-type": "^3.0.0",
"keytar": "^7.0.0",
"md5": "^2.2.1",
"node-rsa": "^1.1.1",
2020-11-05 18:58:23 +02:00
"open": "^7.0.4",
"proper-lockfile": "^2.0.1",
"read-chunk": "^2.1.0",
"server-destroy": "^1.0.1",
"sharp": "^0.26.2",
"sprintf-js": "^1.1.2",
"sqlite3": "^5.0.2",
2020-11-05 18:58:23 +02:00
"string-padding": "^1.0.2",
"strip-ansi": "^4.0.0",
"tcp-port-used": "^1.0.2",
2020-11-05 18:58:23 +02:00
"terminal-kit": "^1.30.0",
"tkwidgets": "0.5.27",
2020-11-05 18:58:23 +02:00
"url-parse": "^1.4.7",
"word-wrap": "^1.2.3",
"yargs-parser": "^7.0.0"
},
"devDependencies": {
2022-04-12 16:30:37 +02:00
"@joplin/tools": "~2.8",
"@types/fs-extra": "^9.0.6",
2020-11-19 20:34:53 +02:00
"@types/jest": "^26.0.15",
2020-11-05 18:58:23 +02:00
"@types/node": "^14.14.6",
"gulp": "^4.0.2",
"jest": "^26.6.3",
2020-11-05 18:58:23 +02:00
"temp": "^0.9.1",
"typescript": "^4.0.5"
}
}