-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.48 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
{
"name": "@nivalis/linter",
"version": "0.0.12",
"module": "src/index.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"description": "Lint your code with Biome and ESLint at once",
"license": "MIT",
"homepage": "https://github.com/nivalis-studio/linter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nivalis-studio/linter.git"
},
"bugs": {
"url": "https://github.com/nivalis-studio/linter/issues"
},
"keywords": [
"biome",
"eslint"
],
"scripts": {
"build": "unbuild",
"prepublishOnly": "unbuild",
"prepack": "unbuild"
},
"bin": {
"nivalis-linter": "./dist/index.mjs"
},
"files": [
"package.json",
"patches",
"dist"
],
"unbuild": {
"rollup": {
"esbuild": {
"target": "node18",
"minify": true
}
},
"declaration": true,
"clean": true,
"failOnWarn": false,
"exports": "named",
"preserveModules": true,
"sourcemap": true
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/bun": "latest",
"@types/yargs": "^17.0.33",
"globals": "^15.11.0",
"typescript-eslint": "^8.10.0",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"@biomejs/wasm-bundler": "1.9.4",
"@biomejs/wasm-nodejs": "1.9.4",
"@biomejs/wasm-web": "1.9.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@biomejs/js-api": "0.7.1",
"eslint": "^9.13.0",
"globby": "^14.0.2",
"yargs": "^17.7.2"
}
}