diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-27 17:03:10 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-27 18:30:30 -0700 |
commit | 9970036d203ba2d0a46b35ba6fad21d49441cdd4 (patch) | |
tree | a585d13933bf4149dcb07e28526063d071453105 /package.json | |
download | pengueno-9970036d203ba2d0a46b35ba6fad21d49441cdd4.tar.gz pengueno-9970036d203ba2d0a46b35ba6fad21d49441cdd4.zip |
hai
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..fa06543 --- /dev/null +++ b/package.json @@ -0,0 +1,53 @@ +{ + "name": "@emprespresso/pengueno", + "type": "module", + "version": "0.0.1", + "description": "emprespresso pengueno utils", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "repository": { + "type": "git", + "url": "ssh://git@src.liz.coffee:2222/pengueno" + }, + "author": "emprespresso", + "license": "MIT", + "scripts": { + "build": "tsc", + "test": "jest", + "dev": "tsc --watch", + "clean": "rm -rf dist node_modules", + "lint": "eslint . --ext .ts,.js", + "lint:fix": "eslint . --ext .ts,.js --fix", + "format": "prettier --write .", + "format:check": "prettier --check ." + }, + "devDependencies": { + "@types/jest": "^30.0.0", + "@types/module-alias": "^2.0.4", + "@types/node": "^24.0.0", + "@typescript-eslint/eslint-plugin": "^8.34.0", + "@typescript-eslint/parser": "^8.34.0", + "eslint": "^9.32.0", + "eslint-config-prettier": "^10.1.0", + "eslint-plugin-prettier": "^5.5.0", + "hono": "^4.8.0", + "jest": "^30.0.5", + "module-alias": "^2.2.3", + "prettier": "^3.6.0", + "ts-jest": "^29.4.0", + "typescript": "^5.8.0", + "typescript-eslint": "^8.38.0" + }, + "files": [ + "dist/**/*", + "package.json", + "README.md" + ], + "_moduleAliases": { + "@emprespresso/pengueno": "./dist" + }, + "engines": { + "node": ">=22.16.0", + "npm": ">=10.0.0" + } +} |