validate-package-exports 0.9.0 → 0.10.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/dist/cli.mjs +1 -1
- package/package.json +42 -26
package/dist/cli.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "validate-package-exports",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Validate your package.json exports actually exist, have valid syntax, and can be imported or required without issues.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"validate",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git+
|
|
19
|
+
"url": "git+ssh://git@github.com/webdeveric/validate-package-exports.git"
|
|
20
20
|
},
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/webdeveric/validate-package-exports/issues"
|
|
@@ -32,47 +32,63 @@
|
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=20.17.0"
|
|
34
34
|
},
|
|
35
|
+
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
|
|
36
|
+
"scripts": {
|
|
37
|
+
"prevalidate": "pnpm build:dev",
|
|
38
|
+
"validate": "./dist/cli.mjs",
|
|
39
|
+
"format": "prettier --write .",
|
|
40
|
+
"build": "cross-env NODE_ENV=production node --experimental-json-modules --no-warnings ./build.mjs",
|
|
41
|
+
"build:dev": "cross-env NODE_ENV=development node --experimental-json-modules --no-warnings ./build.mjs",
|
|
42
|
+
"postbuild": "node dist/cli.mjs --check --verify",
|
|
43
|
+
"typecheck": "tsc --noEmit && tsc -p ./tsconfig.project-files.json",
|
|
44
|
+
"spellcheck": "cspell --no-progress \"./src/**/*.{ts,js,json}\" \"./*.{md,js,mjs,mts}\" \"./LICENSE\" \"./package.json\"",
|
|
45
|
+
"lint": "eslint ./src \"./*.{mjs,mts}\" --ext .ts",
|
|
46
|
+
"test": "vitest",
|
|
47
|
+
"coverage": "vitest run --coverage",
|
|
48
|
+
"prepack": "pnpm build",
|
|
49
|
+
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage",
|
|
50
|
+
"prepare": "husky"
|
|
51
|
+
},
|
|
35
52
|
"sideEffects": false,
|
|
36
53
|
"prettier": "@webdeveric/prettier-config",
|
|
37
54
|
"dependencies": {
|
|
38
|
-
"@npmcli/arborist": "^9.0.
|
|
39
|
-
"@webdeveric/utils": "^0.
|
|
55
|
+
"@npmcli/arborist": "^9.0.2",
|
|
56
|
+
"@webdeveric/utils": "^0.59.0",
|
|
40
57
|
"npm-packlist": "^10.0.0"
|
|
41
58
|
},
|
|
42
59
|
"devDependencies": {
|
|
43
|
-
"@
|
|
60
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
61
|
+
"@commitlint/types": "^19.8.1",
|
|
62
|
+
"@types/node": "^20.17.46",
|
|
44
63
|
"@types/npm-packlist": "^7.0.3",
|
|
45
64
|
"@types/npmcli__arborist": "^6.3.0",
|
|
46
|
-
"@vitest/coverage-v8": "^3.
|
|
65
|
+
"@vitest/coverage-v8": "^3.1.3",
|
|
47
66
|
"@webdeveric/eslint-config-ts": "^0.11.0",
|
|
48
67
|
"@webdeveric/prettier-config": "^0.3.0",
|
|
68
|
+
"commitlint": "^19.8.1",
|
|
69
|
+
"commitlint-plugin-cspell": "^0.2.0",
|
|
70
|
+
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
49
71
|
"cross-env": "^7.0.3",
|
|
50
|
-
"cspell": "^
|
|
51
|
-
"esbuild": "^0.25.
|
|
72
|
+
"cspell": "^9.0.1",
|
|
73
|
+
"esbuild": "^0.25.4",
|
|
52
74
|
"esbuild-plugin-clean": "^1.0.1",
|
|
53
75
|
"esbuild-plugin-environment": "^0.4.0",
|
|
54
76
|
"eslint": "^8.57.1",
|
|
55
|
-
"eslint-config-prettier": "^10.1.
|
|
56
|
-
"eslint-import-resolver-typescript": "^3.
|
|
77
|
+
"eslint-config-prettier": "^10.1.5",
|
|
78
|
+
"eslint-import-resolver-typescript": "^4.3.4",
|
|
57
79
|
"eslint-plugin-import": "^2.31.0",
|
|
58
80
|
"husky": "^9.1.7",
|
|
59
|
-
"lint-staged": "^
|
|
81
|
+
"lint-staged": "^16.0.0",
|
|
60
82
|
"prettier": "^3.5.3",
|
|
61
|
-
"
|
|
83
|
+
"semantic-release": "^24.2.5",
|
|
84
|
+
"typescript": "^5.8.3",
|
|
62
85
|
"vite-tsconfig-paths": "^5.1.4",
|
|
63
|
-
"vitest": "^3.
|
|
86
|
+
"vitest": "^3.1.3"
|
|
64
87
|
},
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"build:dev": "cross-env NODE_ENV=development node --experimental-json-modules --no-warnings ./build.mjs",
|
|
71
|
-
"postbuild": "node dist/cli.mjs --check --verify",
|
|
72
|
-
"typecheck": "tsc --noEmit && tsc -p ./tsconfig.project-files.json",
|
|
73
|
-
"spellcheck": "cspell --no-progress \"./src/**/*.{ts,js,json}\" \"./*.{md,js,mjs,mts}\" \"./LICENSE\" \"./package.json\"",
|
|
74
|
-
"lint": "eslint ./src ./*.{mjs,mts} --ext .ts",
|
|
75
|
-
"test": "vitest",
|
|
76
|
-
"coverage": "vitest run --coverage"
|
|
88
|
+
"pnpm": {
|
|
89
|
+
"onlyBuiltDependencies": [
|
|
90
|
+
"esbuild",
|
|
91
|
+
"unrs-resolver"
|
|
92
|
+
]
|
|
77
93
|
}
|
|
78
|
-
}
|
|
94
|
+
}
|