-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
{
"name": "squiggleconf2025",
"version": "0.0.0",
"description": "Website for SquiggleConf 2025: a conference for excellent web dev tooling",
"repository": {
"type": "git",
"url": "https://github.com/SquiggleTools/SquiggleConf2025"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg ✨",
"email": "npm@joshuakgoldberg.com"
},
"type": "module",
"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/check": "0.9.4",
"@astrojs/vercel": "^8.0.7",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/josefin-sans": "^5.1.1",
"@fontsource-variable/urbanist": "^5.1.1",
"@konami-emoji-blast/astro": "^0.1.1",
"astro": "5.3.0",
"konami-emoji-blast": "^0.5.9",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.20.0",
"@types/eslint-plugin-markdown": "^2.0.2",
"@types/node": "^22.13.4",
"cspell": "^8.17.3",
"eslint": "^9.20.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-package-json": "^0.26.0",
"eslint-plugin-perfectionist": "^4.9.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-yml": "^1.16.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.44.1",
"lint-staged": "^15.4.3",
"markdownlint": "^0.37.4",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.8",
"sentences-per-line": "^0.3.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"engines": {
"node": "20"
},
"publishConfig": {
"provenance": true
}
}