astro-eslint-parser 0.6.1 → 0.6.3

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.
Files changed (1) hide show
  1. package/package.json +13 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-eslint-parser",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "description": "Astro component parser for ESLint",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.mjs",
@@ -25,7 +25,9 @@
25
25
  "eslint-playground": "eslint tests/fixtures --ext .astro --config .eslintrc-for-playground.js --format codeframe",
26
26
  "benchmark": "npm run ts -- benchmark/index.ts",
27
27
  "ts": "env-cmd -e basic node -r esbuild-register",
28
- "mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js"
28
+ "mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js",
29
+ "prerelease": "npm run clean && npm run build",
30
+ "release": "changeset publish"
29
31
  },
30
32
  "repository": {
31
33
  "type": "git",
@@ -45,7 +47,7 @@
45
47
  },
46
48
  "homepage": "https://github.com/ota-meshi/astro-eslint-parser#readme",
47
49
  "dependencies": {
48
- "@astrojs/compiler": "0.18.0 - 0.24.0 || ^0.24.0",
50
+ "@astrojs/compiler": "0.18 - 0.26 || ^0.26.0",
49
51
  "@typescript-eslint/types": "^5.25.0",
50
52
  "astrojs-compiler-sync": "^0.2.0",
51
53
  "debug": "^4.3.4",
@@ -53,14 +55,16 @@
53
55
  "espree": "^9.0.0"
54
56
  },
55
57
  "devDependencies": {
56
- "@ota-meshi/eslint-plugin": "^0.12.0",
58
+ "@changesets/changelog-github": "^0.4.6",
59
+ "@changesets/cli": "^2.24.2",
60
+ "@ota-meshi/eslint-plugin": "^0.13.0",
57
61
  "@types/benchmark": "^2.1.1",
58
62
  "@types/chai": "^4.3.0",
59
63
  "@types/debug": "^4.1.7",
60
64
  "@types/eslint": "^8.0.0",
61
65
  "@types/eslint-scope": "^3.7.0",
62
66
  "@types/eslint-visitor-keys": "^1.0.0",
63
- "@types/mocha": "^9.0.0",
67
+ "@types/mocha": "^10.0.0",
64
68
  "@types/node": "^16.0.0",
65
69
  "@types/semver": "^7.3.9",
66
70
  "@typescript-eslint/eslint-plugin": "^5.4.0",
@@ -75,7 +79,7 @@
75
79
  "eslint": "^8.15.0",
76
80
  "eslint-config-prettier": "^8.3.0",
77
81
  "eslint-formatter-codeframe": "^7.32.1",
78
- "eslint-plugin-astro": "^0.18.0",
82
+ "eslint-plugin-astro": "^0.19.0",
79
83
  "eslint-plugin-eslint-comments": "^3.2.0",
80
84
  "eslint-plugin-json-schema-validator": "^4.0.0",
81
85
  "eslint-plugin-jsonc": "^2.0.0",
@@ -101,5 +105,8 @@
101
105
  "svelte": "^3.48.0",
102
106
  "tsup": "^6.2.3",
103
107
  "typescript": "~4.8.0"
108
+ },
109
+ "publishConfig": {
110
+ "access": "public"
104
111
  }
105
112
  }