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

38 lines
950 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": {
"build": "rollup -c",
"lint": "eslint --fix src/**/*.ts"
},
"dependencies": {
2022-10-07 06:01:01 +00:00
"chalk": "^5.1.0",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"lowdb": "^3.0.0",
"tar": "^6.1.11",
2022-10-07 06:01:01 +00:00
"type-fest": "^3.0.0"
2022-08-27 06:35:11 +00:00
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
2022-10-07 06:01:01 +00:00
"@rollup/plugin-node-resolve": "^14.1.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/fs-extra": "^9.0.13",
2022-10-07 06:01:01 +00:00
"@types/tar": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@yarnpkg/sdks": "^3.0.0-rc.22",
"eslint": "^8.24.0",
"rollup": "^2.79.1",
2022-08-27 06:35:11 +00:00
"rollup-plugin-terser": "^7.0.2",
2022-10-07 06:01:01 +00:00
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.8.4"
},
"packageManager": "yarn@3.2.4"
2022-08-27 06:35:11 +00:00
}