-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "@povio/spa-deploy-cli",
"version": "5.0.0-beta.6",
"bin": {
"spa-deploy": "./dist/sh.cjs"
},
"type": "module",
"scripts": {
"start": "tsx ./src/sh.ts",
"start:dist": "node ./dist/sh.cjs",
"test": "vitest run",
"test:watch": "vitest",
"build:clean": "rm -rf ./dist",
"build": "yarn build:clean && tsup",
"build:check": "yarn tsc --project . --noEmit",
"lint": "biome format --write",
"push": "yarn exec ./scripts/publish.sh"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"povio",
"spa",
"deploy",
"aws",
"s3",
"cloudfront",
"aws-amplify",
"next-js"
],
"homepage": "https://github.com/povio/spa-deploy-cli",
"bugs": "https://github.com/povio/spa-deploy-cli/issues",
"repository": {
"url": "git+https://github.com/povio/spa-deploy-cli.git",
"type": "git"
},
"author": "Marko Zabreznik <marko.zabreznik@povio.com>",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.948.0",
"@aws-sdk/client-s3": "^3.948.0",
"@aws-sdk/credential-providers": "^3.948.0",
"@biomejs/biome": "^2.3.8",
"@swc/core": "^1.15.4",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.10.4",
"@types/picomatch": "^4.0.2",
"globals": "^16.5.0",
"mime-types": "^3.0.2",
"picomatch": "^4.0.3",
"reflect-metadata": "^0.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.15",
"zod": "^4.2.0"
},
"engines": {
"node": ">= 14",
"yarn": ">= 3.2",
"npm": ">= 8"
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"@povio/resolve-config": "^1.2.0"
}
}