Files

83 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2022-11-08 16:58:15 -08:00
{
2023-02-24 08:36:39 -08:00
"name": "@actions/languageserver",
2026-04-21 19:11:32 +00:00
"version": "0.3.54",
2022-11-08 16:58:15 -08:00
"description": "Language server for GitHub Actions",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
2023-03-23 14:30:31 -07:00
"publishConfig": {
"access": "public"
},
2022-11-08 16:58:15 -08:00
"exports": {
".": {
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"*": [
"./dist/*.d.ts"
]
}
},
"repository": {
"type": "git",
2023-02-23 07:42:25 -08:00
"url": "https://github.com/actions/languageservices"
2022-11-08 16:58:15 -08:00
},
"scripts": {
2025-11-27 15:37:14 +00:00
"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",
2022-11-08 16:58:15 -08:00
"clean": "rimraf dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --max-warnings 0 'src/**/*.ts'",
2023-03-16 14:37:50 -04:00
"lint-fix": "eslint --fix 'src/**/*.ts'",
2022-11-08 16:58:15 -08:00
"prepublishOnly": "npm run build && npm run test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
2025-11-27 15:37:14 +00:00
"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"
2022-11-08 16:58:15 -08:00
},
"dependencies": {
2026-04-21 19:11:32 +00:00
"@actions/languageservice": "^0.3.54",
"@actions/workflow-parser": "^0.3.54",
"@octokit/rest": "^21.1.1",
"@octokit/types": "^9.0.0",
2022-11-08 16:58:15 -08:00
"vscode-languageserver": "^8.0.2",
2022-12-12 18:31:34 -05:00
"vscode-languageserver-textdocument": "^1.0.7",
"yaml": "^2.1.3"
2022-11-08 16:58:15 -08:00
},
"engines": {
"node": ">= 20"
2022-11-08 16:58:15 -08:00
},
"files": [
2025-11-27 15:37:14 +00:00
"dist/**/*",
"bin/**/*"
2022-11-08 16:58:15 -08:00
],
"devDependencies": {
"@types/jest": "^29.0.3",
2023-03-20 18:33:34 -04:00
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
2025-11-27 15:37:14 +00:00
"esbuild": "^0.27.1",
2023-03-20 18:33:34 -04:00
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
2023-01-24 13:09:36 -05:00
"fetch-mock": "^9.11.0",
2022-11-08 16:58:15 -08:00
"jest": "^29.0.3",
"node-fetch": "^2.6.7",
2023-01-30 12:37:29 -08:00
"prettier": "^2.8.3",
2022-11-08 16:58:15 -08:00
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.8.3"
2022-11-08 16:58:15 -08:00
}
2023-03-16 20:34:31 +00:00
}