mirror of
https://github.com/tauri-apps/tauri-github-bot.git
synced 2026-01-31 00:35:20 +01:00
42 lines
1004 B
JSON
42 lines
1004 B
JSON
{
|
|
"name": "tauri-bot",
|
|
"version": "0.0.0",
|
|
"description": "",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"dev": "esno src/index.ts dev",
|
|
"start": "esno src/index.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"ts-check": "tsc --noEmit",
|
|
"format": "prettier --write --end-of-line=auto \"./**/*.{js,ts,json}\" --ignore-path .gitignore"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^18.5.3",
|
|
"chalk": "^4.1.2",
|
|
"esno": "^0.5.0",
|
|
"p-filter": "^3.0.0",
|
|
"winston": "^3.3.3",
|
|
"husky": "^7.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.10.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.3",
|
|
"@typescript-eslint/parser": "^4.29.3",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"prettier": "^2.3.2",
|
|
"typescript": "^4.4.2"
|
|
}
|
|
}
|