-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "@tresjs/eslint-config",
"type": "module",
"version": "1.4.0",
"packageManager": "pnpm@9.9.0",
"description": "Opinionated ESLint configuration for Tres.js ecosystem",
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tresjs/eslint-config.git"
},
"keywords": [
"eslint",
"eslint-config",
"eslintconfig"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npx @eslint/config-inspector --config eslint.config.ts",
"lint": "eslint . --flag unstable_ts_config",
"lint:fix": "eslint . --fix",
"preview": "eslint-flat-config-viewer",
"release": "release-it",
"build": "tsup --format esm,cjs --clean --dts",
"stub": "tsup --format esm",
"watch": "tsup --format esm,cjs --watch"
},
"peerDependencies": {
"eslint": "9.x"
},
"dependencies": {
"@antfu/eslint-config": "~3.6.0",
"eslint-plugin-format": "^0.1.2"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.2",
"eslint": "npm:eslint-ts-patch@9.8.0-1",
"eslint-flat-config-viewer": "^0.1.20",
"eslint-ts-patch": "9.8.0-1",
"release-it": "^17.6.0",
"tsup": "^8.2.4"
}
}