-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
{
"name": "lopata",
"version": "0.16.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/contember/lopata"
},
"bin": {
"lopata": "src/cli.ts"
},
"exports": {
"./vite-plugin": "./src/vite-plugin/index.ts",
"./testing": "./src/testing/index.ts",
"./testing/setup": "./src/testing/setup.ts"
},
"files": [
"src/",
"!src/dashboard/",
"!src/error-page/",
"dist/"
],
"scripts": {
"dev": "cd examples/playground && bun ../../src/cli.ts dev",
"cli": "bun src/cli.ts",
"test": "bun test tests/ examples/playground/tests/",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "dprint fmt",
"format:check": "dprint check",
"build:assets": "bun scripts/build-assets.ts",
"typecheck": "bunx --bun tsc --build",
"prepublishOnly": "bun scripts/build-assets.ts"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1036.0",
"@aws-sdk/lib-storage": "^3.1036.0",
"@aws-sdk/s3-presigned-post": "^3.1036.0",
"@aws-sdk/s3-request-presigner": "^3.1036.0",
"@biomejs/biome": "^2.3.13",
"@cloudflare/sandbox": "^0.7.4",
"@types/bun": "latest",
"bun-plugin-tailwind": "^0.1.2",
"dprint": "^0.51.1",
"html-rewriter-wasm": "^0.4.1",
"preact": "^10.28.3",
"puppeteer": "*",
"puppeteer-core": "*",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"typescript": "^5",
"vite": "^7.3.1",
"wrangler": "^4.67.0"
},
"dependencies": {
"smol-toml": "^1.6.0"
}
}