forked from so1ve/eslint-plugin-dprint-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "eslint-plugin-dprint-integration",
"version": "0.4.0",
"packageManager": "pnpm@8.15.4",
"author": "Ray <i@mk1.io> (@so1ve)",
"description": "Integrate dprint into eslint.",
"keywords": [
"dprint",
"eslint"
],
"homepage": "https://github.com/so1ve/eslint-plugin-dprint-integration#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/so1ve/eslint-plugin-dprint-integration.git"
},
"bugs": {
"url": "https://github.com/so1ve/eslint-plugin-dprint-integration/issues"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pkgroll",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"stub": "unbuild --stub",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dprint/dockerfile": "^0.3.0",
"@dprint/formatter": "^0.2.0",
"@dprint/json": "^0.19.1",
"@dprint/markdown": "^0.16.3",
"@dprint/toml": "^0.5.4",
"@dprint/typescript": "^0.88.7",
"defu": "^6.1.3",
"dprint-plugin-malva": "^0.1.4",
"dprint-plugin-markup": "^0.2.6",
"find-up": "^5.0.0",
"prettier-linter-helpers": "^1.0.0"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@so1ve/eslint-config": "^1.0.2",
"@so1ve/prettier-config": "^1.0.2",
"@types/eslint": "^8.56.0",
"@types/node": "^20.10.5",
"@types/prettier-linter-helpers": "^1.0.4",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"eslint-parser-plain": "^0.1.0",
"eslint-plugin-dprint-integration": "^0.3.0",
"pkgroll": "^2.0.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vitest": "^1.1.0"
}
}