setup-cpp/packages/untildify-user/package.json

32 lines
768 B
JSON
Raw Normal View History

2022-08-08 11:04:59 +08:00
{
"name": "untildify-user",
"version": "1.0.0",
2022-08-08 12:03:16 +08:00
"description": "Untildify a path for the current user even if it is root",
2022-08-08 11:04:59 +08:00
"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",
2024-08-16 08:01:33 +08:00
"lint.tsc": "tsc --noEmit --pretty",
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix"
2022-08-08 11:04:59 +08:00
},
"dependencies": {
2024-01-23 08:23:22 +08:00
"admina": "1.0.1"
2022-08-08 11:04:59 +08:00
},
"keywords": [
"tilde",
"expansion",
"expand",
"untildify",
"path",
"home",
"directory",
"user",
"shell",
"bash"
2024-08-07 14:51:00 +08:00
],
"devDependencies": {}
2022-08-08 11:04:59 +08:00
}