-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.63 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
{
"name": "deployproof",
"version": "0.3.0",
"description": "Prove a preview behaves like production before you deploy.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"deployproof": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"check": "tsc --noEmit && vitest run && tsup && vite build --config site/vite.config.ts",
"dev": "tsx src/cli.ts",
"site:dev": "vite --config site/vite.config.ts",
"site:build": "vite build --config site/vite.config.ts",
"deploy": "vite build --config site/vite.config.ts && wrangler deploy",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm check && git diff --exit-code -- dist"
},
"keywords": [
"deployment",
"preview",
"production",
"smoke-test",
"headers",
"redirects",
"github-actions",
"ci"
],
"author": "Loke",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/loke-dev/deployproof.git"
},
"homepage": "https://deployproof.loke.dev",
"bugs": {
"url": "https://github.com/loke-dev/deployproof/issues"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^26.1.1",
"picocolors": "^1.1.1",
"tsup": "^8.5.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"wrangler": "4.114.0"
},
"packageManager": "pnpm@11.17.0"
}