setup-cpp/packages/ci-log/package.json

37 lines
986 B
JSON
Raw Normal View History

2022-08-08 16:22:28 +08:00
{
"name": "ci-log",
2024-08-27 06:12:30 +08:00
"version": "1.0.1",
2022-08-08 16:22:28 +08:00
"description": "Colorful logging and print for any environment including GitHub Actions",
"repository": "https://github.com/aminya/setup-cpp",
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/ci-log",
2022-08-08 16:22:28 +08:00
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"main": "./dist/index.js",
"source": "./src/index.ts",
"type": "module",
2022-08-08 16:22:28 +08:00
"scripts": {
2024-08-16 06:55:02 +08:00
"build": "tsc --pretty",
2024-08-24 06:20:37 +08:00
"dev": "tsc --watch --pretty",
2024-08-16 08:01:33 +08:00
"lint.tsc": "tsc --noEmit --pretty",
2024-08-16 17:32:26 +08:00
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
"prepublishOnly": "pnpm run build"
2022-08-08 16:22:28 +08:00
},
"dependencies": {
2024-01-22 13:31:35 +08:00
"@actions/core": "^1.10.1",
"ci-info": "^4.0.0"
2022-08-08 16:22:28 +08:00
},
"keywords": [
"log",
"print",
"GitHub",
"actions",
"Gitlab",
"CI",
"color",
"console",
"info",
"notifications"
2024-08-07 14:51:00 +08:00
],
"devDependencies": {}
2022-08-08 16:22:28 +08:00
}