-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "@artichokeruby/www.artichokeruby.org",
"version": "0.5.0",
"private": true,
"type": "module",
"description": "Artichoke project website",
"keywords": [
"programming language",
"scripting",
"ruby",
"rust",
"wasm"
],
"homepage": "https://www.artichokeruby.org",
"bugs": "https://github.com/artichoke/www.artichokeruby.org/issues",
"license": "MIT",
"author": "Ryan Lopopolo <rjl@hyperbo.la> (https://hyperbo.la/)",
"contributors": [
"Ryan Lopopolo <rjl@hyperbo.la> (https://hyperbo.la/)"
],
"repository": "github:artichoke/www.artichokeruby.org",
"dependencies": {
"@artichokeruby/logo": "^0.12.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"marked": "^4.3.0"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"esbuild": "^0.24.2",
"eslint": "9.19.0",
"eta": "^3.4.0",
"globals": "^15.14.0",
"highlight.js": "^11.11.1",
"prettier": "3.4.2",
"rimraf": "^6.0.1"
},
"scripts": {
"dev": "npx concurrently \"npm:serve\" \"npm:watch\"",
"build": "node build.mjs",
"serve": "python3 -u -m http.server --directory dist --bind localhost 0",
"watch": "npx chokidar-cli \"package.json\" \"package-lock.json\" \"build.mjs\" \"src/**/*\" -c \"npm run build\" --initial",
"clean": "rimraf dist",
"fmt": "prettier --write \"**/*\"",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
}
}