dotfiles/deployer/package.json

33 lines
674 B
JSON
Raw Normal View History

2023-01-26 19:24:29 +01:00
{
"name": "deployer",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"type": "module",
2023-04-03 15:51:22 +02:00
"bin": {
"ydeployer": "./bin/ydeployer.js"
},
2023-01-26 19:24:29 +01:00
"scripts": {
"watch": "exec tsc --noEmit -w",
"start": "exec tsx ./index.ts",
2023-04-03 15:51:22 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "exec tsup ./*.ts --dts --format esm"
2023-01-26 19:24:29 +01:00
},
"repository": {
"type": "git",
"url": "https://git.yori.cc/yorick/dotfiles"
},
"author": "",
"license": "ISC",
"dependencies": {
2023-04-03 15:51:22 +02:00
"tsup": "^6.7.0",
2023-01-26 19:24:29 +01:00
"tsx": "^3.12.2",
"typescript": "^4.9.4",
"zx": "^7.1.1"
}
}