-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.81 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"type": "module",
"scripts": {
"build": "ncc build src/main.ts --source-map --license licenses.txt",
"format": "pnpm format:eslint && pnpm format:prettier",
"format:eslint": "pnpm lint --fix",
"format:prettier": "prettier --write .",
"generate": "pnpm generate:docs && pnpm generate:inputs && pnpm generate:unicode-regex && pnpm format",
"generate:docs": "gha-docgen --style table",
"generate:inputs": "tsx ./scripts/generate-inputs.ts",
"generate:unicode-regex": "tsx ./scripts/generate-unicode-regex.ts",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"release": "semantic-release",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit ${1}",
"preserveUnused": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,md,yaml,json}": "prettier --write"
},
"prettier": {
"arrowParens": "always",
"plugins": [
"prettier-plugin-packagejson"
],
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"semantic-release-major-tag"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"parjs": "^1.3.9"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.9.1",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/github": "10.1.7",
"@semantic-release/release-notes-generator": "14.0.1",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/eslint__js": "8.42.3",
"@types/node": "22.5.0",
"@unicode/unicode-15.0.0": "1.5.2",
"@vercel/ncc": "0.38.1",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"gha-docgen": "1.0.1",
"globals": "15.9.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.2",
"regenerate": "1.4.2",
"semantic-release": "24.1.0",
"semantic-release-major-tag": "0.3.2",
"simple-git-hooks": "2.11.1",
"ts-morph": "23.0.0",
"tsx": "4.18.0",
"typescript": "5.5.4",
"typescript-eslint": "8.3.0",
"vitest": "2.0.5",
"yaml": "2.5.0",
"zod": "3.23.8"
},
"packageManager": "pnpm@9.9.0"
}