@supersigil/eslint-plugin 0.1.0 → 0.1.1
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 +22 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supersigil/eslint-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "ESLint plugin for validating Supersigil criterion refs",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -10,22 +10,15 @@
|
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://supersigil.org",
|
|
12
12
|
"bugs": "https://github.com/jonisavo/supersigil/issues",
|
|
13
|
-
"keywords": [
|
|
14
|
-
"eslint",
|
|
15
|
-
"eslintplugin",
|
|
16
|
-
"eslint-plugin",
|
|
17
|
-
"supersigil",
|
|
18
|
-
"specification",
|
|
19
|
-
"traceability"
|
|
20
|
-
],
|
|
13
|
+
"keywords": ["eslint", "eslintplugin", "eslint-plugin", "supersigil", "specification", "traceability"],
|
|
21
14
|
"engines": {
|
|
22
15
|
"node": ">=18"
|
|
23
16
|
},
|
|
24
17
|
"type": "module",
|
|
25
18
|
"exports": {
|
|
26
19
|
".": {
|
|
27
|
-
"import": "./
|
|
28
|
-
"types": "./
|
|
20
|
+
"import": "./src/index.ts",
|
|
21
|
+
"types": "./src/index.ts"
|
|
29
22
|
}
|
|
30
23
|
},
|
|
31
24
|
"files": [
|
|
@@ -33,19 +26,28 @@
|
|
|
33
26
|
"src/",
|
|
34
27
|
"README.md"
|
|
35
28
|
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "node esbuild.mjs && tsc --emitDeclarationOnly --noEmit false --outDir dist",
|
|
31
|
+
"prepack": "pnpm build",
|
|
32
|
+
"test": "vitest run"
|
|
33
|
+
},
|
|
36
34
|
"peerDependencies": {
|
|
37
35
|
"eslint": ">=9.0.0"
|
|
38
36
|
},
|
|
39
37
|
"devDependencies": {
|
|
40
|
-
"@
|
|
41
|
-
"
|
|
38
|
+
"@supersigil/vitest": "workspace:*",
|
|
39
|
+
"@types/node": "catalog:",
|
|
40
|
+
"esbuild": "catalog:",
|
|
42
41
|
"eslint": "^9.39.4",
|
|
43
|
-
"typescript": "
|
|
44
|
-
"vitest": "
|
|
45
|
-
"@supersigil/vitest": "0.1.0"
|
|
42
|
+
"typescript": "catalog:",
|
|
43
|
+
"vitest": "catalog:"
|
|
46
44
|
},
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
|
|
45
|
+
"publishConfig": {
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"import": "./dist/index.js",
|
|
49
|
+
"types": "./dist/index.d.ts"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
50
52
|
}
|
|
51
|
-
}
|
|
53
|
+
}
|