-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.87 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
{
"name": "shipstatic-cli",
"version": "2.1.0",
"description": "CLI and SDK for ShipStatic — deploy static websites, landing pages, and prototypes instantly. The unscoped name for @shipstatic/ship.",
"keywords": [
"shipstatic",
"static-hosting",
"deploy",
"cli",
"sdk"
],
"homepage": "https://shipstatic.com",
"repository": {
"type": "git",
"url": "git+https://github.com/shipstatic/shipstatic-cli.git"
},
"license": "MIT",
"type": "module",
"bin": {
"ship": "./bin.cjs"
},
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./index.d.cts",
"exports": {
".": {
"browser": {
"types": "./index.d.mts",
"default": "./index.mjs"
},
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
},
"require": {
"types": "./index.d.cts",
"default": "./index.cjs"
}
},
"./cli": "./bin.cjs",
"./package.json": "./package.json"
},
"files": [
"bin.cjs",
"index.cjs",
"index.mjs",
"index.d.cts",
"index.d.mts",
"README.md"
],
"sideEffects": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.12.4",
"scripts": {
"test": "vitest",
"test:ci": "vitest --run",
"check:package": "publint && attw --pack . --ignore-rules false-export-default --exclude-entrypoints cli",
"prepare": "git config core.hooksPath scripts/githooks",
"lint": "biome check .",
"format": "biome format --write ."
},
"dependencies": {
"@shipstatic/ship": "^2.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@biomejs/biome": "2.5.5",
"publint": "^0.3.12",
"vitest": "^4.1.10"
},
"bugs": {
"url": "https://github.com/shipstatic/ship/issues"
},
"author": "ShipStatic"
}