-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 883 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 883 Bytes
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
{
"name": "@usewren/cli",
"version": "0.4.2",
"description": "CLI for WREN — deploy static sites, manage versioned JSON documents, and control trees",
"type": "module",
"bin": {
"wren": "bin/wren.cjs"
},
"files": [
"bin/wren.cjs",
"index.ts",
"config.ts"
],
"keywords": [
"wren",
"deploy",
"versioned",
"json",
"cms",
"static-site",
"cli"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/usewren/wren.git"
},
"homepage": "https://wren.aemwip.com",
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.11"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"commander": "^14.0.3"
},
"scripts": {
"test": "bun test",
"release": "npm version patch && npm publish --access public"
}
}