92c5235a00
- Upgrade lerna from v8 to v9 (adds OIDC trusted publishing support) - Remove registry-url, scope, and packages:write from release workflow - Remove NPM_CONFIG_PROVENANCE env (automatic with OIDC) - Update workspace typescript devDependency from ^4.8.4 to ^5.8.3 - Remove root typescript override (no longer needed)
83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "@actions/languageserver",
|
|
"version": "0.3.45",
|
|
"description": "Language server for GitHub Actions",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"source": "./src/index.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./*": {
|
|
"import": "./dist/*.js"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./dist/index.d.ts"
|
|
],
|
|
"*": [
|
|
"./dist/*.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/actions/languageservices"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json && npm run build:cli",
|
|
"build:cli": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/cli.bundle.cjs",
|
|
"clean": "rimraf dist",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint --max-warnings 0 'src/**/*.ts'",
|
|
"lint-fix": "eslint --fix 'src/**/*.ts'",
|
|
"prepublishOnly": "npm run build && npm run test",
|
|
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
|
|
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
|
|
"watch": "tsc --build tsconfig.build.json --watch",
|
|
"watch:cli": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/cli.bundle.cjs --watch"
|
|
},
|
|
"bin": {
|
|
"actions-languageserver": "./bin/actions-languageserver"
|
|
},
|
|
"dependencies": {
|
|
"@actions/languageservice": "^0.3.45",
|
|
"@actions/workflow-parser": "^0.3.45",
|
|
"@octokit/rest": "^21.1.1",
|
|
"@octokit/types": "^9.0.0",
|
|
"vscode-languageserver": "^8.0.2",
|
|
"vscode-languageserver-textdocument": "^1.0.7",
|
|
"yaml": "^2.1.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 20"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"bin/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jest": "^29.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"esbuild": "^0.27.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"fetch-mock": "^9.11.0",
|
|
"jest": "^29.0.3",
|
|
"node-fetch": "^2.6.7",
|
|
"prettier": "^2.8.3",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|