This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.77 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
102
103
104
105
106
107
{
"name": "@ubiquibot/configuration",
"version": "2.1.0",
"private": false,
"description": "Configuration helpers for Ubiquibot.",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"build": "rollup -c",
"format": "run-s format:lint format:prettier format:cspell",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"prepare": "husky install",
"test": "jest --setupFiles dotenv/config --coverage"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"ubiquibot",
"open-source"
],
"dependencies": {},
"peerDependencies": {
"@octokit/webhooks": "12.2.0",
"@sinclair/typebox": "0.32.27",
"dotenv": "16.4.5",
"lodash": "4.17.21",
"ms": "2.1.3",
"typebox-validators": "0.3.5"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@cspell/dict-node": "4.0.3",
"@cspell/dict-software-terms": "3.3.18",
"@cspell/dict-typescript": "3.1.2",
"@octokit/webhooks": "12.2.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@rollup/plugin-yaml": "4.1.2",
"@sinclair/typebox": "0.32.23",
"@types/jest": "29.5.12",
"@types/lodash": "4.14.202",
"@types/ms": "0.7.34",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"cspell": "8.3.2",
"dotenv": "16.4.5",
"esbuild": "0.20.0",
"esbuild-plugin-yaml": "0.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "0.24.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-transform-yaml": "1.1.2",
"knip": "5.0.1",
"lint-staged": "15.2.2",
"lodash": "4.17.21",
"ms": "2.1.3",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"rollup": "4.12.0",
"rollup-plugin-dts-bundle-generator": "1.4.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.1.2",
"tslib": "2.6.2",
"tsx": "4.7.1",
"typebox-validators": "0.3.5",
"typescript": "5.3.3"
},
"lint-staged": {
"*.ts": [
"yarn prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"files": [
"dist/*",
"README.md",
"package.json"
],
"module": "dist/index.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts"
}