UNPKG

siroc

Version:

Zero-config build tooling for Node

105 lines (104 loc) 3.04 kB
{ "name": "siroc", "version": "0.16.0", "description": "Zero-config build tooling for Node", "keywords": [ "node", "nodejs", "typescript", "javascript", "rollup", "bundle", "package" ], "repository": "unjs/siroc", "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "bin": { "siroc": "bin/cli.js", "siroc-runner": "bin/runtime.js" }, "files": [ "dist/**/*", "dist/index.d.ts", "!**/*.map" ], "scripts": { "bootstrap": "rollup -c && chmod a+x bin/* && yarn build", "build": "bin/cli.js build", "lint": "yarn lint:all:eslint && yarn lint:all:prettier", "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts,vue}\"", "lint:eslint": "eslint --fix", "lint:prettier": "prettier --write --loglevel warn", "prepare": "yarn husky install && yarn bootstrap", "prepublishOnly": "yarn lint && yarn test && yarn pinst --disable", "release": "release-it", "test": "jest", "watch": "yarn build --watch", "_postinstall": "husky install", "postpublish": "yarn pinst --enable" }, "dependencies": { "@rollup/plugin-alias": "^3.1.5", "@rollup/plugin-commonjs": "^20.0.0", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.0.4", "@rollup/plugin-replace": "^3.0.0", "cac": "^6.7.3", "chalk": "^4.1.2", "consola": "^2.15.3", "defu": "^5.0.0", "detect-indent": "^6.1.0", "esbuild": "^0.12.22", "execa": "^5.1.1", "fs-extra": "^10.0.0", "glob": "^7.1.7", "jiti": "^1.11.0", "mkdist": "^0.3.3", "rollup": "^2.56.3", "rollup-plugin-dts": "^3.0.2", "rollup-plugin-esbuild": "4.5.0", "sort-package-json": "^1.50.0", "typescript": "^4.3.5", "upath": "^2.0.1", "v8-compile-cache": "^2.3.0" }, "devDependencies": { "@babel/core": "^7.15.0", "@babel/plugin-transform-runtime": "^7.15.0", "@babel/preset-env": "^7.15.0", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.3", "@release-it/conventional-changelog": "^3.3.0", "@types/execa": "^2.0.0", "@types/fs-extra": "^9.0.12", "@types/glob": "^7.1.4", "@types/jest": "^27.0.1", "@types/node": "^16.7.1", "@typescript-eslint/eslint-plugin": "^4.29.3", "@typescript-eslint/parser": "^4.29.3", "codecov": "^3.8.3", "conventional-changelog-conventionalcommits": "^4.6.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jest": "^24.4.0", "eslint-plugin-prettier": "^3.4.1", "eslint-plugin-promise": "^5.1.0", "husky": "^7.0.1", "jest": "^27.0.6", "jest-environment-node": "^27.0.6", "lint-staged": "^11.1.2", "pinst": "^2.1.6", "prettier": "^2.3.2", "release-it": "14.11.5", "semver": "^7.3.5", "typescript": "^4.3.5" }, "packageManager": "yarn@3.0.0-rc.9", "volta": { "node": "12.22.1" } }