-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "@rbnlffl/rollup-plugin-eslint",
"version": "6.0.0",
"description": "Lint your Rollup bundles with ESLint. 🐝",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "robinloeffel/rollup-plugin-eslint",
"homepage": "https://github.com/robinloeffel/rollup-plugin-eslint",
"bugs": "https://github.com/robinloeffel/rollup-plugin-eslint/issues",
"author": "Robin Löffel (https://robinloeffel.ch) <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"source",
"dist"
],
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"eslint"
],
"dependencies": {
"@rollup/pluginutils": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/eslint": "^8.44.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-config-sweet": "^12.0.0",
"eslint-plugin-jsonc": "^2.10.0",
"husky": "^8.0.3",
"rollup": "^4.3.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"eslint": "^8",
"rollup": "^3 || ^4"
},
"scripts": {
"start": "bun run build && bun run watch",
"build": "rm -rf dist && tsc",
"test": "rollup -c ./test/rollup.config.js",
"watch": "concurrently 'bun run watch:source' 'bun run watch:test'",
"watch:source": "chokidar 'source/**/*' -c 'bun run build'",
"watch:test": "chokidar 'test/**/*' -c 'bun run test'",
"prepare": "husky install"
}
}