UNPKG

@wormhole-labs/dev-config

Version:

Shared development configuration and tooling for Wormhole Labs projects

89 lines (88 loc) 2.42 kB
{ "name": "@wormhole-labs/dev-config", "version": "1.2.0", "description": "Shared development configuration and tooling for Wormhole Labs projects", "private": false, "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./commitlint": "./config/commitlint.config.mjs", "./prettier": "./config/prettier.config.js", "./eslint": "./config/eslint.config.js", "./package.json": "./package.json" }, "scripts": { "prepare": "husky", "build": "tsc", "prebuild": "rm -rf dist", "lint": "eslint .", "format": "prettier --write .", "format:check": "prettier --check .", "validate": "npm run lint && npm run format:check", "test:release": "GH_TOKEN=$(gh auth token) npx semantic-release --dry-run" }, "keywords": [ "wormhole", "dev-config", "commitlint", "prettier", "eslint", "release-automation" ], "author": "Wormhole Labs", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/wormholelabs-xyz/dev-config.git" }, "bugs": { "url": "https://github.com/wormholelabs-xyz/dev-config/issues" }, "homepage": "https://github.com/wormholelabs-xyz/dev-config#readme", "files": [ "dist", "config", "README.md", "LICENSE" ], "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@eslint/js": "^9.30.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.2", "@types/node": "^22.10.5", "@typescript-eslint/eslint-plugin": "^8.36.0", "@typescript-eslint/parser": "^8.36.0", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.30.1", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.1", "husky": "^9.1.7", "prettier": "^3.6.2", "semantic-release": "^24.2.6", "semantic-release-unsquash": "^0.3.0", "typescript": "^5.8.3" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "engines": { "node": ">=20.0.0", "npm": ">=10.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/", "provenance": true } }