@stacksjs/lint 0.64.6 → 0.67.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/README.md +3 -1
- package/package.json +14 -16
package/README.md
CHANGED
|
@@ -61,7 +61,9 @@ For casual chit-chat with others using this package:
|
|
|
61
61
|
|
|
62
62
|
Many thanks to the following core technologies & people who have contributed to this package:
|
|
63
63
|
|
|
64
|
-
- [
|
|
64
|
+
- [ESLint](https://github.com/eslint)
|
|
65
|
+
- [antfu](https://github.com/antfu/eslint-config)
|
|
66
|
+
- [publint](https://github.com/bluwy/publint)
|
|
65
67
|
- [lint-staged](https://github.com/okonet/lint-staged)
|
|
66
68
|
- [Chris Breuer](https://github.com/chrisbbreuer)
|
|
67
69
|
- [All Contributors](../../contributors)
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/lint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.67.0",
|
|
5
5
|
"description": "The Stacks way to lint.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
|
+
"contributors": [
|
|
8
|
+
"Chris Breuer <chris@stacksjs.org>"
|
|
9
|
+
],
|
|
7
10
|
"license": "MIT",
|
|
8
11
|
"funding": "https://github.com/sponsors/chrisbbreuer",
|
|
9
12
|
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/lint#readme",
|
|
@@ -18,43 +21,38 @@
|
|
|
18
21
|
"keywords": [
|
|
19
22
|
"linter",
|
|
20
23
|
"formatter",
|
|
21
|
-
"
|
|
24
|
+
"eslint",
|
|
25
|
+
"antfu",
|
|
22
26
|
"pre-configured",
|
|
23
27
|
"zero-config",
|
|
24
28
|
"stacks"
|
|
25
29
|
],
|
|
26
30
|
"exports": {
|
|
27
31
|
".": {
|
|
28
|
-
"bun": "./src/index.ts",
|
|
29
32
|
"import": "./dist/index.js"
|
|
30
33
|
},
|
|
31
34
|
"./*": {
|
|
32
|
-
"bun": "./src/*",
|
|
33
35
|
"import": "./dist/*"
|
|
34
36
|
}
|
|
35
37
|
},
|
|
36
38
|
"module": "dist/index.js",
|
|
37
39
|
"types": "dist/index.d.ts",
|
|
38
|
-
"contributors": [
|
|
39
|
-
"Chris Breuer <chris@stacksjs.org>"
|
|
40
|
-
],
|
|
41
40
|
"files": [
|
|
42
41
|
"README.md",
|
|
43
42
|
"dist",
|
|
44
43
|
"src"
|
|
45
44
|
],
|
|
46
45
|
"scripts": {
|
|
47
|
-
"build": "
|
|
48
|
-
"typecheck": "bun
|
|
46
|
+
"build": "bun build.ts",
|
|
47
|
+
"typecheck": "bun tsc --noEmit",
|
|
49
48
|
"prepublishOnly": "bun run build"
|
|
50
49
|
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@biomejs/biome": "^1.8.3",
|
|
53
|
-
"@commitlint/cli": "^19.4.1",
|
|
54
|
-
"lint-staged": "^15.2.9",
|
|
55
|
-
"publint": "^0.2.10"
|
|
56
|
-
},
|
|
57
50
|
"devDependencies": {
|
|
58
|
-
"@
|
|
51
|
+
"@commitlint/cli": "^19.5.0",
|
|
52
|
+
"@stacksjs/development": "0.67.0",
|
|
53
|
+
"@stacksjs/eslint-config": "^3.8.1-beta.2",
|
|
54
|
+
"lint-staged": "^15.2.10",
|
|
55
|
+
"publint": "^0.2.11",
|
|
56
|
+
"simple-git-hooks": "^2.11.1"
|
|
59
57
|
}
|
|
60
58
|
}
|