galactus
Version:
Prunes dependencies from your package
60 lines (59 loc) • 1.43 kB
JSON
{
"name": "galactus",
"version": "2.0.2",
"type": "module",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"description": "Prunes dependencies from your package",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "npm run lint && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [
"prune",
"production"
],
"author": "Samuel Attard",
"license": "MIT",
"dependencies": {
"debug": "^4.4.1",
"flora-colossus": "^3.0.2"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/debug": "^4.1.12",
"@types/node": "^22.0.13",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MarshallOfSound/galactus.git"
},
"bugs": {
"url": "https://github.com/MarshallOfSound/galactus/issues"
},
"homepage": "https://github.com/MarshallOfSound/galactus#readme",
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}