-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "validate-package-exports",
"version": "0.8.0",
"description": "Validate your package.json exports actually exist, have valid syntax, and can be imported or required without issues.",
"keywords": [
"validate",
"package",
"package.json",
"exports"
],
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Eric King",
"url": "http://webdeveric.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdeveric/validate-package-exports.git"
},
"bugs": {
"url": "https://github.com/webdeveric/validate-package-exports/issues"
},
"homepage": "https://github.com/webdeveric/validate-package-exports/#readme",
"type": "module",
"bin": {
"validate-package-exports": "dist/cli.mjs"
},
"files": [
"./dist"
],
"engines": {
"node": ">=20.17.0"
},
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"scripts": {
"prevalidate": "pnpm build:dev",
"validate": "./dist/cli.mjs",
"format": "prettier --write .",
"build": "cross-env NODE_ENV=production node --experimental-json-modules --no-warnings ./build.mjs",
"build:dev": "cross-env NODE_ENV=development node --experimental-json-modules --no-warnings ./build.mjs",
"postbuild": "node dist/cli.mjs --check --verify",
"typecheck": "tsc --noEmit && tsc -p ./tsconfig.project-files.json",
"spellcheck": "cspell --no-progress \"./src/**/*.{ts,js,json}\" \"./*.{md,js,mjs,mts}\" \"./LICENSE\" \"./package.json\"",
"lint": "eslint ./src ./*.{mjs,mts} --ext .ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepack": "pnpm build",
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage",
"prepare": "husky"
},
"sideEffects": false,
"prettier": "@webdeveric/prettier-config",
"dependencies": {
"@npmcli/arborist": "^9.0.0",
"@webdeveric/utils": "^0.42.0",
"npm-packlist": "^10.0.0"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/npm-packlist": "^7.0.3",
"@types/npmcli__arborist": "^5.6.11",
"@vitest/coverage-v8": "^2.1.8",
"@webdeveric/eslint-config-ts": "^0.11.0",
"@webdeveric/prettier-config": "^0.3.0",
"cross-env": "^7.0.3",
"cspell": "^8.17.1",
"esbuild": "^0.24.2",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-environment": "^0.4.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}