rollup-plugin-google-apps-script
Version:
Rollup plugin for Google Apps Script.
103 lines • 2.94 kB
JSON
{
"name": "rollup-plugin-google-apps-script",
"version": "2.0.2",
"description": "Rollup plugin for Google Apps Script.",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"default": "./dist/cjs/index.js"
},
"types": "./dist/types/index.d.ts",
"simple-git-hooks": {
"pre-commit": "pnpx lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"{src,types}/**/*.ts": [
"eslint --cache --cache-location node_modules/.cache/eslint/ --fix"
],
"**/*.d.ts": [
"eslint --cache --cache-location node_modules/.cache/eslint/ --fix"
],
"tests/**/*.ts": [
"eslint --cache --cache-location node_modules/.cache/eslint/ --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mato533/rollup-plugin-gas.git"
},
"author": "Taiki Abe <taiki.abe@ymail.ne.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mato533/rollup-plugin-gas/issues"
},
"homepage": "https://github.com/mato533/rollup-plugin-gas#readme",
"peerDependencies": {
"rollup": "^3.25.0 || ^4.0.0",
"vite": "^4.4.9"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
},
"vite": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.1",
"git-cliff": "^2.8.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"rollup": "^4.34.7",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.1.0",
"simple-git-hooks": "^2.11.1",
"tslib": "^2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^3.0.5"
},
"dependencies": {
"gas-entry-generator": "^2.6.0",
"picocolors": "^1.1.1",
"rollup-pluginutils": "^2.8.2"
},
"files": [
"dist",
"!dist/**/*.map",
"README.md",
"LICENSE"
],
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"Google Apps Script",
"google-apps-scripts"
],
"scripts": {
"dev": "rollup --config rollup.config.ts --configPlugin typescript -w",
"format": "prettier --write --cache .",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/ --fix .",
"build": "tsc --noEmit && rollup --config rollup.config.ts --configPlugin typescript",
"changelog": "git-cliff -o CHANGELOG.md",
"test": "vitest --run",
"typecheck": "tsc --noEmit",
"coverage:ui": "vitest run --coverage && vite preview --outDir ./coverage",
"coverage": "vitest run --coverage"
}
}