@oncoursesystems/eslint-config 1.0.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/LICENSE +21 -0
- package/README.md +193 -0
- package/dist/build-MNP2VQ2J.js +130 -0
- package/dist/chunk-3DH23OWQ.js +98399 -0
- package/dist/chunk-UVR5GK7I.js +65 -0
- package/dist/index.cjs +132276 -0
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1095 -0
- package/dist/jiti-AGHD3IJV.js +31362 -0
- package/dist/lib-DX5OAELA.js +158 -0
- package/dist/src-LTC4MYI6.js +1127 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oncoursesystems/eslint-config",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "OnCourse Systems' ESLint configurations",
|
|
6
|
+
"author": "OnCourse Systems For Education",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/oncoursesystems/eslint-config#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/oncoursesystems/eslint-config.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"eslint-config"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"require": "./dist/index.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"bin",
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@antfu/eslint-config": "^3.10.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@eslint-react/eslint-plugin": "^1.17.1",
|
|
34
|
+
"@eslint/config-inspector": "^0.5.6",
|
|
35
|
+
"@sencha/eslint-plugin-extjs": "^7.8.0",
|
|
36
|
+
"@stylistic/eslint-plugin-migrate": "^2.11.0",
|
|
37
|
+
"@tanstack/eslint-plugin-query": "^5.61.4",
|
|
38
|
+
"@types/fs-extra": "^11.0.4",
|
|
39
|
+
"@types/node": "^22.10.0",
|
|
40
|
+
"bumpp": "^9.8.1",
|
|
41
|
+
"eslint": "^9.15.0",
|
|
42
|
+
"eslint-flat-config-utils": "^0.4.0",
|
|
43
|
+
"eslint-plugin-expo": "^0.1.0",
|
|
44
|
+
"eslint-plugin-format": "^0.1.2",
|
|
45
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
46
|
+
"eslint-plugin-react-refresh": "^0.4.14",
|
|
47
|
+
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
48
|
+
"eslint-typegen": "^0.3.2",
|
|
49
|
+
"esno": "^4.8.0",
|
|
50
|
+
"execa": "^9.5.1",
|
|
51
|
+
"fast-glob": "^3.3.2",
|
|
52
|
+
"fs-extra": "^11.2.0",
|
|
53
|
+
"jiti": "^2.4.0",
|
|
54
|
+
"lint-staged": "^15.2.10",
|
|
55
|
+
"prettier": "^3.4.1",
|
|
56
|
+
"simple-git-hooks": "^2.11.1",
|
|
57
|
+
"tsup": "^8.3.5",
|
|
58
|
+
"typescript": "^5.7.2",
|
|
59
|
+
"vitest": "^2.1.6",
|
|
60
|
+
"wrangler": "^3.90.0"
|
|
61
|
+
},
|
|
62
|
+
"simple-git-hooks": {
|
|
63
|
+
"pre-commit": "npx lint-staged"
|
|
64
|
+
},
|
|
65
|
+
"lint-staged": {
|
|
66
|
+
"*": "eslint --flag unstable_ts_config --fix"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsup --format esm,cjs --clean --dts",
|
|
70
|
+
"stub": "tsup --format esm",
|
|
71
|
+
"dev": "npx @pn --config eslint.config.ts",
|
|
72
|
+
"build:inspector": "pnpm build && npx @eslint/config-inspector build",
|
|
73
|
+
"watch": "tsup --format esm,cjs --watch",
|
|
74
|
+
"lint": "eslint --flag unstable_ts_config .",
|
|
75
|
+
"lint:fix": "eslint --flag unstable_ts_config . --fix",
|
|
76
|
+
"release": "bumpp && pnpm publish",
|
|
77
|
+
"test": "vitest",
|
|
78
|
+
"typecheck": "tsc --noEmit"
|
|
79
|
+
}
|
|
80
|
+
}
|