-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "rollup-plugin-google-apps-script",
"version": "2.0.1",
"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",
"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"
},
"packageManager": "[email protected]",
"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 <[email protected]>",
"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.17.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.1",
"git-cliff": "^2.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"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.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"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"
]
}