-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.42 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
{
"name": "@dvcol/typescript-lib-template",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "<description>",
"homepage": "https://github.com/dvcol/typescript-lib-template",
"bugs": "https://github.com/dvcol/typescript-lib-template/issues",
"keywords": [
"typescript",
"library",
"typescript-lib-template"
],
"license": "MIT",
"author": "dvcol",
"repository": {
"type": "git",
"url": "https://github.com/dvcol/typescript-lib-template.git"
},
"engines": {
"node": ">=20",
"pnpm": ">= 8"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import.types": "./dist/index.d.ts",
"require.types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"*.md",
"LICENSE",
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsup && publint",
"watch": "npm run build -- --watch lib",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"lint:package": "publint",
"test:unit": "vitest --run --coverage",
"test:watch": "vitest",
"release": "standard-version",
"release:changelog": "extract-changelog-release > RELEASE.md"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@dvcol/eslint-plugin-presets": "^1.3.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vitest": "^0.4.1",
"eslint-plugin-yml": "^1.14.0",
"extract-changelog-release": "^1.0.2",
"husky": "^9.1.5",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"publint": "^0.2.10",
"standard-version": "^9.5.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,svelte,json,md}": [
"eslint --fix"
]
}
}