-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "sitebender.io",
"version": "0.0.60",
"private": true,
"homepage": "https://sitebender.io/",
"license": "MIT",
"author": "Charles Munat <[email protected]>",
"type": "module",
"browser": {
"crypto": false,
"exif-reader": false
},
"scripts": {
"api": "vercel dev",
"astro": "astro",
"b": "browserify ./public/scripts/theia.js > ./public/scripts/main.js",
"build": "astro build",
"bump": "pnpm version patch --force",
"bump:major": "pnpm version major --force",
"bump:minor": "pnpm version minor --force",
"check:exports": "pnpx find-unused-exports",
"check:packages": "pnpx npm-check -u",
"dep": "pnpm fmt && pnpm lint && pnpm lint:fix && pnpm check:packages && infisical run -- pnpm build && rm -rf .cache .history dist",
"dep:prod": "pnpm dep:dev && vercel deploy",
"dev": "astro dev",
"fmt": "pnpm prettier . --write",
"lint": "pnpx oxlint@latest",
"lint:css": "pnpm stylelint \"src/**/*.css\"",
"lint:fix": "pnpm stylelint \"src/**/*.css\" --fix",
"preview": "astro preview",
"push": "git add -A && pnpm bump && git push",
"start": "astro dev",
"test": "pnpm test:int"
},
"devDependencies": {
"@astrojs/mdx": "^2.2.2",
"@astrojs/sitemap": "^3.1.2",
"@astrojs/vercel": "^7.5.0",
"@js-temporal/polyfill": "^0.4.4",
"@sitebender/components": "^0.1.89",
"@types/qrcode": "^1.5.5",
"@vercel/edge-config": "^1.1.0",
"@vercel/node": "^3.0.25",
"astro": "^4.5.12",
"browserify": "^17.0.0",
"exifr": "^7.1.3",
"exifreader": "^4.21.1",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.13.0",
"qrcode": "^1.5.3",
"rollup": "^4.13.2",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0",
"temporal-polyfill": "^0.2.3",
"typescript": "^5.4.3",
"vercel": "^33.6.2",
"vite": "^5.2.7",
"vite-plugin-compress": "^2.1.1"
},
"dependencies": {
"buffer": "^6.0.3"
}
}