-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.29 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
{
"name": "squiggleconf",
"version": "0.0.0",
"description": "Website for SquiggleConf: a conference for excellent web dev tooling.",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/SquiggleConf"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg",
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"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",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@astrojs/vercel": "^7.7.2",
"@konami-emoji-blast/astro": "^0.0.1",
"@types/lodash": "^4.17.7",
"konami-emoji-blast": "^0.5.3",
"lodash": "^4.17.21",
"sharp": "^0.33.4"
},
"devDependencies": {
"@astrojs/check": "0.8.1",
"@astropub/md": "1.0.0",
"@eslint-community/eslint-plugin-eslint-comments": "4.3.0",
"@eslint/js": "9.7.0",
"@fontsource-variable/josefin-sans": "5.0.21",
"@fontsource/urbanist": "5.0.20",
"@types/eslint-plugin-markdown": "2.0.2",
"accessible-astro-components": "^2.3.6",
"astro": "4.11.5",
"cspell": "8.10.4",
"eslint": "8.57.0",
"eslint-plugin-jsdoc": "48.7.0",
"eslint-plugin-jsonc": "2.16.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.9.0",
"eslint-plugin-package-json": "0.15.2",
"eslint-plugin-perfectionist": "2.11.0",
"eslint-plugin-regexp": "2.6.0",
"eslint-plugin-yml": "1.14.0",
"husky": "9.0.11",
"jsonc-eslint-parser": "2.4.0",
"knip": "5.27.0",
"lint-staged": "15.2.7",
"markdownlint": "0.34.0",
"markdownlint-cli": "0.41.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.0",
"prettier-plugin-curly": "0.2.1",
"prettier-plugin-packagejson": "2.5.1",
"sentences-per-line": "0.2.1",
"typescript": "5.5.3",
"typescript-eslint": "7.16.1"
},
"packageManager": "[email protected]+sha1.886364ebd6dae009284bebc56ed4296bb6dd557a",
"engines": {
"node": ">=18"
}
}