generated from webdeveric/dual-ts-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.56 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": "commitlint-plugin-cspell",
"description": "Spellcheck your commit messages with CSpell",
"version": "0.1.0",
"keywords": [
"commitlint",
"commitlintplugin",
"cspell",
"spellcheck"
],
"author": "Eric King <eric@webdeveric.com> (https://webdeveric.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/webdeveric/commitlint-plugin-cspell.git"
},
"bugs": {
"url": "https://github.com/webdeveric/commitlint-plugin-cspell/issues"
},
"license": "MIT",
"packageManager": "pnpm@10.5.0+sha512.11106a5916c7406fe4b8cb8e3067974b8728f47308a4f5ac5e850304afa6f57e2847d7950dfe78877d8d36bfb401d381c4215db3a4c3547ffa63c14333a6fa51",
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist/",
"prebuild": "pnpm clean",
"build": "tsc --build tsconfig.mjs.json --force",
"validate": "validate-package-exports --check --verify --info",
"postbuild": "pnpm validate",
"typecheck": "tsc --build --verbose",
"lint": "eslint ./*.{js,cjs,mjs,ts,cts,mts} ./src/ ./test/ --ext .ts,.mjs,.cjs",
"test": "vitest",
"coverage": "vitest run -c vitest.config.mts --coverage",
"spellcheck": "cspell './{.github,src,test}/**/*.{ts,json}' './*.{js,json,md,mjs,mts}' './package.json' --no-progress",
"prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage && pnpm build",
"format": "prettier --write ./*.{js,json,md,mjs,mts} ./src/ ./test/",
"prepare": "husky"
},
"prettier": "@webdeveric/prettier-config",
"dependencies": {
"@commitlint/types": "^19.5.0",
"cspell-lib": "^8.17.5"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"@webdeveric/eslint-config-ts": "^0.11.0",
"@webdeveric/prettier-config": "^0.3.0",
"cspell": "^8.17.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"typescript": "^5.7.3",
"validate-package-exports": "^0.8.0",
"vitest": "^3.0.7"
},
"peerDependencies": {
"@commitlint/lint": ">=7.6.0"
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0"
}
}
}