action-miniprogram-ci/package.json

47 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2023-08-06 22:58:51 +08:00
{
"name": "action-miniprogram-ci",
2024-08-16 12:07:40 +08:00
"version": "1.2.0",
2023-08-06 22:58:51 +08:00
"private": true,
"description": "将 miniprogram-ci 封装为 action, 通过 Actions 实现小程序自动化上传/预览",
"main": "lib/main.js",
2024-08-16 12:01:27 +08:00
"packageManager": "yarn@1.22.19",
2023-08-06 22:58:51 +08:00
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seepine/action-miniprogram-ci.git"
},
"keywords": [
"actions",
"miniprogram-ci"
],
"author": "seepine",
"license": "MIT",
"dependencies": {
2024-03-22 18:25:25 +08:00
"@actions/core": "1.10.0",
"jimp": "0.22.10",
"jsqr": "1.4.0",
2024-08-16 12:07:05 +08:00
"qrcode-terminal": "0.12.0"
2023-08-06 22:58:51 +08:00
},
"devDependencies": {
2024-03-22 18:25:25 +08:00
"@types/node": "18.16.3",
"@typescript-eslint/parser": "5.59.2",
"@vercel/ncc": "0.36.1",
"eslint": "8.39.0",
"eslint-plugin-github": "4.7.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
2023-08-06 22:58:51 +08:00
}
}