-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
{
"name": "watermelon-pizza",
"version": "1.0.0",
"description": "My personal website!!",
"engines": {
"node": ">=24.14.0"
},
"dependencies": {
"@imagemagick/magick-wasm": "^0.0.40",
"@parcel/optimizer-data-url": "^2.16.4",
"@parcel/packager-xml": "^2.16.4",
"@parcel/plugin": "^2.16.4",
"@parcel/transformer-inline-string": "^2.16.4",
"@parcel/transformer-xml": "^2.16.4",
"@types/common-tags": "^1.8.4",
"@types/extract-zip": "^2.0.3",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"common-tags": "^1.8.2",
"emit-keypress": "^2.0.1",
"extract-zip": "^2.0.1",
"local-bitmo": "file:packages/local-bitmo",
"local-fetcher": "file:./packages/local-fetcher/",
"marked": "^18.0.3",
"marked-footnote": "^1.4.0",
"marked-xhtml": "^1.0.15",
"ora": "^9.4.0",
"painbrush": "^3.3.2",
"parcel": "^2.16.4",
"parcel-reporter-static-files-copy": "^1.5.3",
"sharp": "^0.33.5",
"stylelint": "^17.9.1",
"stylelint-config-standard": "^40.0.0",
"wasm-imagemagick": "^1.2.8"
},
"type": "module",
"source": [
"src/index.html",
"src/words/index.ts",
"src/words/*.md"
],
"imports": {
"#parcel/*": "./parcel/*",
"#src/*": "./src/*",
"#prerender/*": "./src/prerender/*",
"#/*": "./*"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"@parcel/transformer-css": {
"errorRecovery": true
},
"browserslist": [
"last 10 Chrome versions"
],
"scripts": {
"install": "npm run make",
"make": "NODE_OPTIONS=\"--max-old-space-size=20480\" parcel build --no-optimize",
"start": "node serve.ts",
"local-bitmo": "npm exec local-bitmo",
"clean": "rm -rf dist .parcel-cache",
"now": "node -e 'console.log(parseInt(new Date().getTime()/1000))'",
"fetch": "npm exec local-fetcher -- --clean --save-to src/widget-data",
"fetchdev": "npm exec local-fetcher -- --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walaura/watermelon-pizza"
},
"author": "Laura Mayhem",
"license": "IT-MINE",
"homepage": "https://github.com/walaura/watermelon-pizza",
"devDependencies": {
"@parcel/reporter-bundle-analyzer": "^2.16.4",
"@parcel/reporter-bundle-buddy": "^2.16.4",
"@types/node": "^25.6.0"
}
}