-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.13 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
{
"name": "eslint-plugin-rtl-friendly",
"version": "0.3.0",
"description": "Encourage the use of RTL-friendly styles",
"author": {
"name": "Ahmed Abdelbaset",
"url": "https://twitter.com/A7med3bdulBaset"
},
"type": "module",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src/**/*.md",
"index.d.ts",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"type:check": "tsc --noEmit",
"build": "tsup",
"clean": "rm -rf dist",
"format": "biome check . --write",
"lint": "eslint .",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --run --coverage",
"prepublishOnly": "npm run build",
"gen-e2e": "tsx scripts/generate-e2e"
},
"peerDependencies": {
"eslint": ">=9.0.0",
"tailwindcss": ">=3.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@eslint/js": "9.9.0",
"@types/node": "^20.14.14",
"@typescript-eslint/rule-tester": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.8.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"tailwindcss": "~3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.5"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"rtl",
"right-to-left",
"rtl-friendly"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AhmedBaset/eslint-plugin-rtl-friendly.git"
},
"bugs": {
"url": "https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/issues"
},
"homepage": "https://github.com/AhmedBaset/eslint-plugin-rtl-friendly#readme"
}