-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "esbuild-plugin-eslint",
"version": "0.3.12",
"description": "Lint your esbuild bundles with ESLint. 🧐",
"keywords": [
"esbuild",
"plugin",
"esbuild-plugin",
"eslint",
"lint"
],
"homepage": "https://github.com/robinloeffel/esbuild-plugin-eslint",
"bugs": "https://github.com/robinloeffel/esbuild-plugin-eslint/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/robinloeffel/esbuild-plugin-eslint.git"
},
"license": "MIT",
"author": "Robin Löffel (https://robinloeffel.ch) <[email protected]>",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "concurrently npm:build:* -m 1",
"build:cjs": "tsc --project tsconfig.cjs.json && mv dist/index.js dist/index.cjs",
"build:mjs": "tsc --project tsconfig.mjs.json && mv dist/index.js dist/index.mjs",
"build:types": "tsc --project tsconfig.types.json",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"start": "npm run clean && npm run build && npm run watch",
"watch": "concurrently npm:watch:*",
"watch:build": "chokidar 'source/**/*' -c 'npm run build' --initial",
"watch:test": "chokidar 'test/**/*' -c 'node test/esbuild.js' --initial"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.3",
"@types/eslint": "^8.56.5",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"esbuild": ">=0.20",
"eslint": "^8 || ^9",
"eslint-config-sweet": "^19.0.2",
"eslint-define-config": "^2.1.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"esbuild": ">=0.20",
"eslint": "^8 || ^9"
},
"engines": {
"node": ">=18"
}
}