@flint.fyi/rule-data 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@flint.fyi/rule-data",
3
+ "version": "0.4.0",
4
+ "description": "Data for all of Flint's rules and mappings between Flint and other web linters.",
5
+ "homepage": "https://flint.fyi",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/flint-fyi/flint.git",
9
+ "directory": "packages/rule-data"
10
+ },
11
+ "license": "MIT",
12
+ "author": {
13
+ "name": "Flint Team",
14
+ "url": "https://flint.fyi/team"
15
+ },
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "exports": {
19
+ ".": "./src/index.ts"
20
+ },
21
+ "files": [
22
+ "dist/"
23
+ ],
24
+ "scripts": {
25
+ "sort-data": "node scripts/sort-data.ts",
26
+ "test": "vitest --project rule-data"
27
+ },
28
+ "dependencies": {
29
+ "@flint.fyi/astro": "workspace:^",
30
+ "@flint.fyi/browser": "workspace:^",
31
+ "@flint.fyi/core": "workspace:^",
32
+ "@flint.fyi/css": "workspace:^",
33
+ "@flint.fyi/json": "workspace:^",
34
+ "@flint.fyi/jsx": "workspace:^",
35
+ "@flint.fyi/md": "workspace:^",
36
+ "@flint.fyi/node": "workspace:^",
37
+ "@flint.fyi/package-json": "workspace:^",
38
+ "@flint.fyi/performance": "workspace:^",
39
+ "@flint.fyi/plugin-flint": "workspace:^",
40
+ "@flint.fyi/spelling": "workspace:^",
41
+ "@flint.fyi/ts": "workspace:^",
42
+ "@flint.fyi/vitest": "workspace:^",
43
+ "@flint.fyi/yaml": "workspace:^",
44
+ "zod": "^4.3.6"
45
+ },
46
+ "devDependencies": {
47
+ "@biomejs/biome": "2.4.16",
48
+ "@eslint-community/eslint-plugin-eslint-comments": "catalog:dev",
49
+ "@eslint/json": "2.0.0",
50
+ "@eslint/markdown": "catalog:dev",
51
+ "@flint.fyi/build": "workspace:^",
52
+ "@next/eslint-plugin-next": "16.2.6",
53
+ "@nuxt/eslint-plugin": "1.16.0",
54
+ "@types/eslint-plugin-jsx-a11y": "6.10.1",
55
+ "@types/eslint-plugin-promise": "7.3.0",
56
+ "@typescript-eslint/eslint-plugin": "catalog:dev",
57
+ "@vitest/eslint-plugin": "catalog:dev",
58
+ "eslint": "catalog:dev",
59
+ "eslint-plugin-astro": "1.7.0",
60
+ "eslint-plugin-eslint-plugin": "7.3.3",
61
+ "eslint-plugin-import": "2.32.0",
62
+ "eslint-plugin-jsdoc": "catalog:dev",
63
+ "eslint-plugin-jsonc": "catalog:dev",
64
+ "eslint-plugin-jsx-a11y": "6.10.2",
65
+ "eslint-plugin-n": "catalog:dev",
66
+ "eslint-plugin-package-json": "catalog:dev",
67
+ "eslint-plugin-perfectionist": "catalog:dev",
68
+ "eslint-plugin-promise": "7.3.0",
69
+ "eslint-plugin-react": "7.37.5",
70
+ "eslint-plugin-react-hooks": "7.1.1",
71
+ "eslint-plugin-regexp": "catalog:dev",
72
+ "eslint-plugin-solid": "0.14.5",
73
+ "eslint-plugin-svelte": "3.17.1",
74
+ "eslint-plugin-unicorn": "64.0.0",
75
+ "eslint-plugin-vue": "10.9.1",
76
+ "eslint-plugin-yml": "catalog:dev",
77
+ "markdownlint": "0.41.0",
78
+ "oxlint": "1.69.0",
79
+ "tsdown": "catalog:dev",
80
+ "vitest": "catalog:dev",
81
+ "vue-eslint-parser": "10.4.1"
82
+ },
83
+ "engines": {
84
+ "node": ">=26.1.0"
85
+ },
86
+ "publishConfig": {
87
+ "access": "public",
88
+ "exports": {
89
+ ".": "./dist/index.mjs"
90
+ }
91
+ }
92
+ }