2024-08-15 09:22:33 +08:00
|
|
|
{
|
|
|
|
"name": "os-env",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Manage environment variables, PATH, and rc files",
|
|
|
|
"homepage": "https://github.com/aminya/setup-cpp",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"author": "Amin Yahyaabadi",
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
"source": "./src/index.ts",
|
|
|
|
"scripts": {
|
2024-08-16 06:55:02 +08:00
|
|
|
"build": "tsc --pretty",
|
|
|
|
"lint": "tsc --noEmit --pretty"
|
2024-08-15 09:22:33 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.10.1",
|
|
|
|
"@types/node": "^12",
|
|
|
|
"admina": "^1.0.1",
|
|
|
|
"ci-info": "^4.0.0",
|
|
|
|
"escape-path-with-spaces": "^1.0.2",
|
|
|
|
"escape-quotes": "^1.0.2",
|
|
|
|
"micro-memoize": "^4.1.2",
|
|
|
|
"path-exists": "^5.0.0",
|
|
|
|
"ci-log": "workspace:*",
|
|
|
|
"exec-powershell": "workspace:*",
|
|
|
|
"untildify-user": "workspace:*"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=12"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"env",
|
|
|
|
"path",
|
|
|
|
"dotenv",
|
|
|
|
"rc",
|
|
|
|
"addEnv",
|
|
|
|
"addPath",
|
|
|
|
"setEnv",
|
|
|
|
"linux",
|
|
|
|
"windows",
|
|
|
|
"unix",
|
|
|
|
"macos"
|
2024-08-16 05:54:05 +08:00
|
|
|
],
|
|
|
|
"devDependencies": {}
|
2024-08-15 09:22:33 +08:00
|
|
|
}
|