-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.46 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.46 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
71
72
{
"name": "eslint-config-xo-bizon",
"version": "4.2.0",
"description": "ESLint shareable config to be used with xo",
"repository": "https://github.com/bizon/eslint-config-xo-bizon",
"author": "Bertrand Marron <bertrand.marron@gmail.com>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"check:ts": "tsc --noEmit",
"build": "tsup",
"dev": "tsup --watch"
},
"devDependencies": {
"@bizon/semantic-release-config": "^3.1.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.12.0",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"xo": "^1.2.3"
},
"keywords": [
"eslintconfig",
"xo",
"xoxo",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"bizon"
],
"release": {
"extends": "@bizon/semantic-release-config"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"dts": true
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
}