UNPKG

@mornya/vessel

Version:

Creates/publishes a Node.js module with no build configuration.

105 lines (104 loc) 2.57 kB
{ "name": "@mornya/vessel", "version": "5.6.1", "description": "Creates/publishes a Node.js module with no build configuration.", "keywords": [ "mornya", "vessel", "cli", "command-line-interface", "scaffolding", "boilerplate", "library", "node.js", "typescript", "ecmascript", "javascript", "front-end", "back-end" ], "homepage": "https://github.com/vessel-cli/vessel", "bugs": "https://github.com/vessel-cli/vessel/issues", "license": "ISC", "author": "mornya <mornya78@gmail.com>", "private": false, "repository": { "type": "git", "url": "git+https://github.com/vessel-cli/vessel.git" }, "main": "./dist/index.js", "types": "./dist", "bin": { "vessel": "bin/vessel.js" }, "scripts": { "setup": "husky && lintest install || exit 0", "prepublishOnly": "npm run lint && npm run test && npm run build", "build": "cross-env NODE_ENV=production node ./build-script.js", "init": "lintest uninstall && lintest export", "check": "lintest check", "clean": "lintest clean dist", "lint": "lintest lint", "lint:fix": "lintest lint --fix", "test": "lintest test", "test:watch": "lintest test --watch", "test:coverage": "lintest test --coverage", "sonar": "sonar-scanner" }, "sideEffects": false, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "files": [ "bin", "dist", "!dist/test", "!dist/**/@setup.d.ts", "!dist/**/@setup.js", "!dist/**/*.test.d.ts", "!dist/**/*.test.js", "template", "CHANGELOG.md", "LICENSE", "README.md" ], "type": "commonjs", "engines": { "node": ">=10", "npm": ">=6" }, "dependencies": { "@mornya/cli-libs": "^0.21.0", "@types/jest": "^29", "@types/node": "^24", "@types/react": "^19", "@types/react-dom": "^19", "commander": "^14.0.0", "deepmerge": "^4.3.1", "dotenv": "^17.2.0", "eslint": "^8.57.1", "husky": "^9.1.7", "json-stringify-pretty-compact": "^4.0.0", "lint-staged": "^16.1.2", "node-watch": "^0.7.4", "prettier": "^3.6.2", "react": "^19", "tsc-alias": "^1.8.16", "typescript": "^5.8.3" }, "devDependencies": { "@lintest/core": "^1.17.0", "cross-env": "^7.0.3" }, "lint-staged": { "*.{css,scss}": [ "prettier --write --ignore-path .prettierignore" ], "*.{ts,tsx}": [ "prettier --write --ignore-path .prettierignore", "lintest check", "lintest lint" ] } }