-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.47 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.47 KB
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.15",
"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.21.0",
"@types/bun": "1.2.4",
"@types/yargs": "^17.0.33",
"globals": "16.0.0",
"typescript-eslint": "8.25.0",
"unbuild": "3.5.0"
},
"peerDependencies": {
"@biomejs/wasm-bundler": "1.9.4",
"@biomejs/wasm-nodejs": "1.9.4",
"@biomejs/wasm-web": "1.9.4",
"typescript": "5.7.3"
},
"dependencies": {
"@biomejs/js-api": "0.7.1",
"eslint": "9.21.0",
"globby": "14.1.0",
"yargs": "17.7.2"
}
}