-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "@iso-639/language-code",
"description": "ISO 639 Language Mapping.",
"version": "0.1.0",
"author": "chengpeiquan <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -F docs dev",
"crawling": "pnpm -F crawler start",
"build": "pnpm gen:bundles",
"build:docs": "pnpm -F docs build",
"gen:bundles": "tsx ./scripts/generate-bundles.mts",
"gen:changelog": "tsx ./scripts/generate-changelog.mts",
"gen:version": "tsx ./scripts/generate-version.mts",
"gen:release": "tsx ./scripts/generate-release.mts",
"test": "vitest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ISO-639/language-code.git"
},
"devDependencies": {
"@bassist/commit": "^0.1.0",
"@bassist/eslint": "^0.5.0",
"@bassist/tsconfig": "^0.1.1",
"@bassist/utils": "^0.14.0",
"@types/node": "^20.10.1",
"@withtypes/minimist": "^0.1.1",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.54.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsx": "^4.6.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}