66 lines
1.6 KiB
JSON
Executable File
66 lines
1.6 KiB
JSON
Executable File
{
|
|
"name": "@actions/expressions",
|
|
"version": "0.3.54",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"source": "./src/index.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./*": {
|
|
"import": "./dist/*.js",
|
|
"types": "./dist/*.d.ts"
|
|
}
|
|
},
|
|
"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'",
|
|
"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"
|
|
},
|
|
"engines": {
|
|
"node": ">= 20"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jest": "^29.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.0.3",
|
|
"prettier": "^2.8.3",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|