picnic-cli/package.json

29 lines
636 B
JSON
Raw Normal View History

2023-01-29 18:34:53 +01:00
{
2023-01-30 13:31:06 +01:00
"name": "picnic-cli",
"version": "0.0.1",
2023-01-29 18:34:53 +01:00
"dependencies": {
2023-01-30 13:31:06 +01:00
"luxon": "^3.2.1",
"minimist": "^1.2.7",
2024-02-25 09:26:15 +01:00
"picnic-api": "^3.0.0"
2023-01-30 13:31:06 +01:00
},
"bin": {
"picnic": "./bin/picnic.js"
},
"devDependencies": {
2023-01-29 18:34:53 +01:00
"@types/luxon": "^3.2.0",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
2023-01-30 13:31:06 +01:00
"tsup": "^6.5.0",
2023-01-29 18:34:53 +01:00
"tsx": "^3.12.2",
"typescript": "^4.9.4"
},
"type": "module",
"scripts": {
"watch": "exec tsc --noEmit -w",
"start": "exec tsx ./index.ts",
2023-01-30 13:31:06 +01:00
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "exec tsup ./*.ts --dts --format esm"
2023-01-29 18:34:53 +01:00
},
"private": true
}