-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "@artichokeruby/artichoke.github.io",
"version": "0.7.0",
"type": "module",
"private": true,
"description": "Artichoke project website",
"keywords": [
"programming language",
"scripting",
"ruby",
"rust",
"wasm"
],
"homepage": "https://www.artichokeruby.org",
"bugs": "https://github.com/artichoke/artichoke.github.io/issues",
"license": "MIT",
"author": "Ryan Lopopolo <[email protected]> (https://hyperbo.la/)",
"contributors": [
"Ryan Lopopolo <[email protected]> (https://hyperbo.la/)"
],
"repository": "github:artichoke/artichoke.github.io",
"dependencies": {
"@artichokeruby/logo": "^0.12.0"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@minify-html/node": "^0.15.0",
"eslint": "9.13.0",
"prettier": "3.2.5",
"rimraf": "^6.0.1",
"vite": "^5.4.10"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"clean": "rimraf dist",
"copy:assets": "rimraf \"public/!(*.txt|site.webmanifest)\" && node copy-assets.mjs",
"fmt": "prettier --write \"**/*\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release:markdown_link_check": "find . -name '*.md' -and -not -path '*/node_modules/*' | sort | xargs -n1 npx markdown-link-check --config .github/markdown-link-check.json"
}
}