-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
59
{
"name": "@empathyco/eslint-config",
"type": "module",
"version": "1.5.2",
"description": "ESLint and Prettier config preset",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/empathyco/eslint-config.git"
},
"bugs": {
"url": "https://github.com/empathyco/eslint-config/issues"
},
"keywords": [
"eslint",
"eslintconfig",
"prettier",
"antfu"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./prettier": {
"default": "./dist/prettier.config.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean --dts && tsup prettier.config.js --format esm",
"lint": "eslint --flag unstable_ts_config --fix .",
"lint:check": "eslint --flag unstable_ts_config .",
"lint:inspect": "eslint --flag unstable_ts_config --inspect-config .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@antfu/eslint-config": "3.11.2",
"eslint": "9.16.0",
"prettier": "3.4.1"
},
"devDependencies": {
"eslint": "9.16.0",
"jiti": "2.4.1",
"prettier": "3.4.1",
"tsup": "8.3.5",
"typescript": "5.7.2"
}
}