-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.15 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.15 KB
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
{
"name": "package-template",
"version": "0.0.0",
"description": "A very lovely package. Hooray!",
"repository": {
"type": "git",
"url": "git+https://github.com/ElysiumOSS/package-template.git"
},
"license": "MIT",
"author": {
"name": "womb0comb0"
},
"type": "module",
"main": "lib/index.js",
"files": [
"LICENSE.md",
"README.md",
"lib/",
"package.json"
],
"scripts": {
"build": "tsdown",
"docs": "pnpm dlx typedoc --en tryPointStrategy Expand src",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@google/genai": "^1.22.0",
"@types/bun": "^1.2.23",
"type-fest": "^5.0.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
"@eslint/js": "9.37.0",
"@release-it/conventional-changelog": "10.0.1",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/node": "24.6.2",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "1.3.16",
"console-fail-test": "0.5.0",
"cspell": "9.2.1",
"eslint": "9.37.0",
"eslint-plugin-jsdoc": "60.8.2",
"eslint-plugin-jsonc": "2.21.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-package-json": "0.56.3",
"eslint-plugin-perfectionist": "4.15.1",
"eslint-plugin-regexp": "2.10.0",
"eslint-plugin-yml": "1.19.0",
"husky": "9.1.7",
"knip": "5.64.1",
"lint-staged": "16.2.3",
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"prettier": "3.6.2",
"prettier-plugin-curly": "0.3.2",
"prettier-plugin-packagejson": "2.5.19",
"prettier-plugin-sh": "0.18.0",
"release-it": "19.0.5",
"sentences-per-line": "0.3.0",
"tsdown": "0.15.6",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.18.0",
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"provenance": true
}
}