-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "@kpverse/deploy-nextjs",
"version": "0.1.2",
"description": "Next JS Deployment Automation Tool from KPVERSE.",
"main": "bin/index.js",
"types": "types/index.d.ts",
"bin": {
"deploy-nextjs": "bin/index.js"
},
"scripts": {
"build-and-run": "bun run build && bun run ./bin/index.js",
"build": "bun run sub-build1 && bun run sub-build2 && bun run sub-build3 && bun run sub-build4",
"sub-build1": "bunx swc ./src -d ./build --config-file config1.swcrc",
"sub-build2": "bunx rollup -c --environment reason:bundling",
"sub-build3": "bunx swc ./bin/index.js -o ./bin/index.js --config-file config2.swcrc",
"sub-build4": "bunx rollup -c --environment reason:license-comment"
},
"files": [
"bin/index.js",
"types/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kpverse/deploy-nextjs.git"
},
"keywords": [
"KPVERSE",
"Next JS",
"Deployment Automation",
"Deployment Utility",
"Automation",
"Utility",
"GitHub Pages",
"Static Site Deployment",
"Next JS Deployment Automation Tool",
"Next JS Deployment Utility"
],
"author": {
"name": "Kartavya Patel",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kpverse/deploy-nextjs/issues"
},
"homepage": "https://kpverse.in/deploy-nextjs",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.83",
"@types/node": "^20.5.6",
"dotenv": "^16.3.1",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^4.1.2"
}
}