84 строки
2.3 KiB
JSON
84 строки
2.3 KiB
JSON
{
|
|
"name": "@electron/circleci-oidc-secret-exchange",
|
|
"description": "Provides dynamic access to secrets in exchange for a valid OIDC token",
|
|
"version": "0.0.0-development",
|
|
"main": "dist/index.js",
|
|
"author": "Samuel Attard",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/electron/circleci-oidc-secret-exchange",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/electron/circleci-oidc-secret-exchange.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/electron/circleci-oidc-secret-exchange/issues"
|
|
},
|
|
"engines": {
|
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"eslint": "eslint",
|
|
"prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"prettier:write": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --write",
|
|
"lint": "yarn prettier --check && yarn eslint",
|
|
"prepare": "husky",
|
|
"prepublishOnly": "yarn build",
|
|
"test": "yarn lint && jest"
|
|
},
|
|
"dependencies": {
|
|
"@electron/github-app-auth": "^1.5.0",
|
|
"fastify": "^4.11.0",
|
|
"got": "^11.8.6",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"jwk-to-pem": "^2.0.5",
|
|
"openid-client": "^5.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/jwk-to-pem": "^2.0.1",
|
|
"@types/node": "^22.7.9",
|
|
"@types/pem-jwk": "^2.0.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
"@typescript-eslint/parser": "^8.11.0",
|
|
"eslint": "^9.13.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.8.3",
|
|
"globals": "^15.11.0",
|
|
"husky": "^9.1.6",
|
|
"jest": "^29.7.0",
|
|
"lint-staged": "^15.2.10",
|
|
"pem-jwk": "^2.0.0",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^4.9.4",
|
|
"uuid": "^10.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:jest/recommended",
|
|
"plugin:import/errors",
|
|
"plugin:import/warnings",
|
|
"plugin:import/typescript",
|
|
"prettier"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"dist"
|
|
]
|
|
}
|