@in-ch/setup
Version:
A tool for quick setup and configuration of essential project files.
105 lines (104 loc) • 2.39 kB
JSON
{
"name": "@in-ch/setup",
"version": "0.0.9",
"repository": {
"type": "git",
"url": "git+https://github.com/in-ch/setup"
},
"homepage": "https://in-ch.github.io/setup",
"description": "A tool for quick setup and configuration of essential project files.",
"keywords": [
"setting",
"setup",
"eslint",
"prettier",
"husky",
"lighthouse",
"package manager",
"typescript",
"git message",
"monorepo",
"CI/CD",
"automation",
"devtools",
"code quality",
"commitizen",
"git hooks",
"linting",
"code formatting",
"test automation",
"pre-commit hooks",
"webpack",
"rollup",
"babel",
"jest",
"vitest",
"eslint-config",
"prettier-config",
"husky-config",
"commitlint-config",
"starter template",
"git commit",
"github actions",
"docker",
"dockerfile",
"docker-compose",
"testing",
"unit testing",
"e2e testing",
"playwright",
"storybook",
"component library",
"react testing library",
"coverage"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist && rimraf components",
"start": "node dist/index.js",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"test": "jest"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.15.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11",
"@types/mocha": "^10.0.9",
"@types/node": "^22.10.6",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-no-for-of-array": "^0.1.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"prettier": "^3.4.2",
"prettier-plugin-sort-re-exports": "^0.1.0",
"tsup": "^8.3.5",
"typescript-eslint": "^8.16.0"
},
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"bin": {
"setup": "./dist/index.js",
"ics": "./dist/index.js"
},
"files": [
"dist",
"const"
],
"publishConfig": {
"access": "public"
}
}