Files
languageservices/languageservice/package.json
T
github-actions 7b3116801d v0.1.162
2023-03-09 17:33:13 +00:00

66 lines
1.6 KiB
JSON

{
"name": "@github/actions-languageservice",
"version": "0.1.162",
"description": "Language service 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/actions/languageservices"
},
"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",
"update-webhooks": "ts-node-esm script/webhooks/index.ts",
"watch": "tsc --build tsconfig.build.json --watch"
},
"dependencies": {
"@github/actions-expressions": "^0.1.162",
"@github/actions-workflow-parser": "^0.1.162",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-languageserver-types": "^3.17.2",
"yaml": "^2.1.1"
},
"engines": {
"node": ">= 16.15"
},
"files": [
"dist/**/*"
],
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^29.0.3",
"jest": "^29.0.3",
"prettier": "^2.8.3",
"rest-api-description": "github:github/rest-api-description",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}