Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
wahpkg/package.json

36 lines
951 B
JSON
Raw Normal View History

2022-08-27 06:35:11 +00:00
{
"name": "wahpkg",
"version": "0.0.1",
"description": "Package manager for WahOS",
"type": "module",
"exports": "./dist/index.js",
"license": "GPL-3.0-or-later",
"bin": "./dist/index.js",
"scripts": {
2023-01-12 19:01:49 +00:00
"build": "tsc",
"lint": "eslint --fix src/**/*.ts",
2023-01-12 19:01:49 +00:00
"package:alpine": "pkg -t node18-alpine-x64 -C brotli -o dist/wahpkg dist/index.js",
"package:linux": "pkg -t node18-linux-x64 -C brotli -o dist/wahpkg dist/index.js"
2022-08-27 06:35:11 +00:00
},
"dependencies": {
2023-01-12 18:58:07 +00:00
"chalk": "^5.2.0",
"commander": "^9.5.0",
"fs-extra": "^11.1.0",
"lowdb": "^5.0.5",
2022-10-08 19:30:52 +00:00
"proper-lockfile": "^4.1.2",
2023-01-12 18:58:07 +00:00
"tar": "^6.1.13",
"type-fest": "^3.5.1"
2022-08-27 06:35:11 +00:00
},
"devDependencies": {
2022-10-07 06:01:01 +00:00
"@rushstack/eslint-patch": "^1.2.0",
2023-01-12 18:58:07 +00:00
"@types/fs-extra": "^11.0.1",
2022-10-08 19:30:52 +00:00
"@types/proper-lockfile": "^4.1.2",
2022-10-07 06:01:01 +00:00
"@types/tar": "^6.1.3",
2023-01-12 18:58:07 +00:00
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"pkg": "^5.8.0",
2023-01-12 18:58:07 +00:00
"typescript": "^4.9.4"
}
2022-08-27 06:35:11 +00:00
}