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

42 lines
1.2 KiB
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": {
"build": "rollup -c",
"lint": "eslint --fix src/**/*.ts",
"package:alpine": "rollup -c --environment PRODUCTION && pkg -t node18-alpine-x64 -C brotli -o dist/wahpkg dist/index.js",
"package:linux": "rollup -c --environment PRODUCTION && 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": {
2023-01-12 18:58:07 +00:00
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
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",
"@yarnpkg/sdks": "3.0.0-rc.35",
"eslint": "^8.31.0",
"pkg": "^5.8.0",
2023-01-12 18:58:07 +00:00
"rollup": "^3.10.0",
2022-10-07 06:01:01 +00:00
"rollup-plugin-typescript2": "^0.34.1",
2023-01-12 18:58:07 +00:00
"typescript": "^4.9.4"
}
2022-08-27 06:35:11 +00:00
}