-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "next-bun-docker",
"version": "1.0.0",
"description": "Next.js plugin to fix Bun + Docker build issues with webpack and TypeScript path aliases",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --format cjs --sourcemap",
"build:types": "tsc --emitDeclarationOnly",
"build:all": "bun run build && bun run build:types",
"prepublishOnly": "bun run build:all",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "bunx @biomejs/biome check .",
"lint:fix": "bunx @biomejs/biome check --write .",
"format": "bunx @biomejs/biome format --write .",
"check": "bun run typecheck && bun run lint && bun run test",
"dev": "bun run build:all && bun run test:watch"
},
"keywords": [
"nextjs",
"next",
"bun",
"docker",
"webpack",
"typescript",
"path-aliases",
"build-fix",
"containerization"
],
"author": "vespo92",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vespo92/next-bun-docker.git"
},
"bugs": {
"url": "https://github.com/vespo92/next-bun-docker/issues"
},
"homepage": "https://github.com/vespo92/next-bun-docker#readme",
"peerDependencies": {
"next": ">=12.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}