-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.27 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
{
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/package.json",
"name": "@dareharu/node-template",
"version": "0.0.1",
"description": "A shared template to be used for Dareharu project.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "dist/index.mjs",
"require": "dist/index.js",
"types": "dist/index.d.ts"
}
},
"author": "Sayakie <sayakie@kakao.com>",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dareharu/node-template.git"
},
"bugs": {
"url": "https://github.com/dareharu/node-template/issues"
},
"engines": {
"node": ">=v16.17.0",
"pnpm": ">=8"
},
"scripts": {
"lint": "eslint src test --ext ts --fix",
"format": "prettier --write {src,test}/**/*.ts",
"docs": "typedoc",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"commit": "git-cz",
"cz": "git-cz",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky install .github/husky"
},
"packageManager": "pnpm@^8.15.9",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-angular": "^17.8.1",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.17.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/ui": "^0.34.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^2.8.8",
"pretty-quick": "^4.0.0",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.5",
"typescript": "^5.6.3",
"vitest": "^0.34.6"
}
}