1
0
Fork 0
mirror of https://github.com/clechasseur/rs-cargo.git synced 2025-12-17 07:18:58 +01:00
rs-cargo/package.json
Charles Lechasseur 319e211e94
fix: update to rs-actions-core 5.0.2, run npm update, get octokit fixes (#223)
* fix: update to `rs-actions-core` 5.0.2, run `npm update`, get octokit fixes

* chore: bump version to 3.0.3
2025-02-14 21:59:26 -05:00

54 lines
1.5 KiB
JSON

{
"name": "rs-cargo",
"version": "3.0.3",
"private": false,
"description": "Run cargo command",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"all": "npm run lint && npm run build && npm run test",
"bundle": "cp -r .matchers ./dist/",
"build": "rm -rf ./dist/* && ncc build src/main.ts --minify && npm run bundle",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' '__tests__/**/*.ts'",
"watch": "rm -rf ./dist/* && ncc build src/main.ts --watch",
"test": "jest -c jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clechasseur/rs-cargo.git"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"author": "clechasseur",
"license": "MIT",
"bugs": {
"url": "https://github.com/clechasseur/rs-cargo/issues"
},
"dependencies": {
"@clechasseur/rs-actions-core": "^5.0.2",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@eslint/eslintrc": "^3.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.17",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}