svg-eslint-parser 0.0.1 → 0.0.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.
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "svg-eslint-parser",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
5
+ "packageManager": "pnpm@10.8.0",
5
6
  "description": "An SVG parser that produces output compatible with ESLint.",
6
7
  "keywords": [
7
8
  "eslint-parser",
@@ -21,59 +22,56 @@
21
22
  "exports": {
22
23
  "./package.json": "./package.json",
23
24
  ".": {
24
- "import": {
25
- "types": "./dist/index.d.ts",
26
- "default": "./dist/index.js"
27
- },
28
- "require": {
29
- "types": "./dist/index.d.cts",
30
- "default": "./dist/index.cjs"
31
- }
25
+ "types": "./dist/index.d.mts",
26
+ "default": "./dist/index.mjs"
32
27
  }
33
28
  },
34
- "main": "./dist/index.js",
35
- "module": "./dist/index.js",
36
- "types": "./dist/index.d.ts",
29
+ "main": "./dist/index.mjs",
30
+ "types": "./dist/index.d.mts",
37
31
  "files": [
38
32
  "dist"
39
33
  ],
40
34
  "sideEffects": false,
41
- "dependencies": {
42
- "@ntnyq/utils": "^0.4.2",
43
- "eslint-visitor-keys": "^4.2.0"
44
- },
45
- "devDependencies": {
46
- "@ntnyq/eslint-config": "^3.10.4",
47
- "@ntnyq/prettier-config": "^1.22.0",
48
- "@vitest/coverage-v8": "^3.0.0-beta.3",
49
- "bumpp": "^9.9.2",
50
- "eslint": "^9.17.0",
51
- "husky": "^9.1.7",
52
- "nano-staged": "^0.8.0",
53
- "npm-run-all2": "^7.0.2",
54
- "prettier": "^3.4.2",
55
- "tsup": "^8.3.5",
56
- "typescript": "^5.7.2",
57
- "vitest": "^3.0.0-beta.3"
58
- },
59
- "engines": {
60
- "node": ">=18.18.0"
61
- },
62
- "nano-staged": {
63
- "*.{js,ts,mjs,cjs,vue,json,md,yml,yaml}": "eslint --fix"
64
- },
65
35
  "scripts": {
66
- "build": "tsup",
36
+ "build": "unbuild",
67
37
  "coverage": "vitest --coverage",
68
38
  "deploy": "run-s build docs:build",
69
- "dev": "tsup --watch src",
39
+ "dev": "unbuild --watch",
70
40
  "docs:build": "pnpm -C docs run build",
71
41
  "docs:dev": "pnpm -C docs run dev",
72
- "lint": "eslint .",
42
+ "lint": "eslint",
43
+ "prepare": "husky",
44
+ "prepublishOnly": "pnpm run build",
73
45
  "release": "run-s release:check release:publish",
74
46
  "release:check": "run-s lint typecheck test",
75
47
  "release:publish": "bumpp && pnpm publish",
76
48
  "test": "vitest",
77
49
  "typecheck": "tsc --noEmit"
50
+ },
51
+ "dependencies": {
52
+ "@ntnyq/utils": "catalog:",
53
+ "eslint-visitor-keys": "catalog:"
54
+ },
55
+ "devDependencies": {
56
+ "@ntnyq/eslint-config": "catalog:",
57
+ "@ntnyq/prettier-config": "catalog:",
58
+ "@types/node": "catalog:",
59
+ "@vitest/coverage-v8": "catalog:",
60
+ "bumpp": "catalog:",
61
+ "eslint": "catalog:",
62
+ "husky": "catalog:",
63
+ "nano-staged": "catalog:",
64
+ "npm-run-all2": "catalog:",
65
+ "prettier": "catalog:",
66
+ "typescript": "catalog:",
67
+ "unbuild": "catalog:",
68
+ "vitest": "catalog:"
69
+ },
70
+ "engines": {
71
+ "node": ">=18.18.0"
72
+ },
73
+ "nano-staged": {
74
+ "*.{js,ts,mjs,cjs,vue,md,yml,yaml,json}": "eslint --fix",
75
+ "*.{css,scss,html}": "prettier -uw"
78
76
  }
79
- }
77
+ }