Files
languageservices/languageserver/package.json
T

64 lines
1.5 KiB
JSON
Raw Normal View History

2022-11-08 16:58:15 -08:00
{
"name": "@github/actions-languageserver",
2023-03-09 17:33:13 +00:00
"version": "0.1.162",
2022-11-08 16:58:15 -08:00
"description": "Language server for GitHub Actions",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"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": {
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.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",
"watch": "tsc --build tsconfig.build.json --watch"
2022-11-08 16:58:15 -08:00
},
"dependencies": {
2023-03-09 17:33:13 +00:00
"@github/actions-languageservice": "^0.1.162",
"@github/actions-workflow-parser": "^0.1.162",
"@octokit/rest": "^19.0.7",
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": ">= 16.15"
2022-11-08 16:58:15 -08:00
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^29.0.3",
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",
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": "^4.8.4"
}
2023-01-10 00:12:40 +00:00
}