Files
languageservices/actions-languageserver/package.json
T
2023-01-09 19:01:50 -05:00

63 lines
1.5 KiB
JSON

{
"name": "@github/actions-languageserver",
"version": "0.1.76",
"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",
"url": "https://github.com/github/actions-languageserver/"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.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"
},
"dependencies": {
"@github/actions-languageservice": "^0.1.76",
"@github/actions-workflow-parser": "^0.1.76",
"@octokit/rest": "^19.0.5",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.7",
"yaml": "^2.1.3"
},
"engines": {
"node": ">= 16"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^29.0.3",
"jest": "^29.0.3",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}