-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "selflare",
"version": "1.1.2",
"description": "Compile Cloudflare Workers to Cap'n Proto and deliver them as Docker images.",
"keywords": [
"cloudflare",
"worker",
"capnp",
"capnproto",
"docker",
"image"
],
"author": "JacobLinCool <jacoblincool@gmail.com> (https://github.com/JacobLinCool)",
"license": "MIT",
"bin": {
"selflare": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"patch:mf": "tsx scripts/patch-miniflare.ts",
"build": "pnpm run patch:mf && tsup",
"changeset": "changeset",
"format": "prettier --write . --ignore-path .gitignore",
"test": "vitest --dir test"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"dedent": "^1.5.1",
"workerd": "^1.20240223.1",
"wrangler": "^3.30.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/iarna__toml": "^2.0.5",
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.32",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"miniflare": "^3.20240223.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.15.4",
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/selflare.git"
},
"homepage": "https://github.com/JacobLinCool/selflare",
"bugs": {
"url": "https://github.com/JacobLinCool/selflare/issues"
}
}