-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.35 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@shipstatic/ship",
"version": "0.8.15",
"description": "SDK & CLI for ShipStatic platform",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/browser.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"ship": "./dist/cli.cjs"
},
"scripts": {
"test": "vitest",
"test:unit": "vitest --project unit",
"test:integration": "vitest --project integration",
"test:e2e": "vitest --project e2e",
"test:ci": "vitest --run",
"clean": "rm -rf dist",
"build": "pnpm run clean && tsup && node scripts/post-build.cjs",
"prepare": "husky"
},
"files": [
"dist",
"README.md",
"SKILL.md"
],
"keywords": [
"ai",
"cli",
"custom-domain",
"deploy",
"developer-tools",
"hosting",
"jamstack",
"sdk",
"ship",
"static-hosting",
"static-site",
"typescript",
"vibe-coding",
"web-hosting",
"website"
],
"homepage": "https://github.com/shipstatic/ship",
"repository": {
"type": "git",
"url": "git+https://github.com/shipstatic/ship.git"
},
"bugs": {
"url": "https://github.com/shipstatic/ship/issues"
},
"engines": {
"node": ">=20.0.0"
},
"author": "ShipStatic",
"license": "MIT",
"sideEffects": false,
"dependencies": {
"columnify": "^1.6.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.1",
"form-data-encoder": "^4.1.0",
"formdata-node": "^6.0.3",
"junk": "^4.0.1",
"spark-md5": "^3.0.2",
"yocto-spinner": "^1.1.0",
"yoctocolors": "^2.1.2",
"zod": "^4.4.1"
},
"devDependencies": {
"@shipstatic/types": "^0.8.9",
"@types/columnify": "^1.5.4",
"@types/node": "^20.19.39",
"@types/spark-md5": "^3.0.5",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.23.1",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"memfs": "4.50.0",
"msw": "^2.14.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}