-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
{
"name": "ever-cli",
"version": "0.1.0",
"description": "Ever CLI router for the Ever ecosystem",
"license": "GPL-3.0",
"homepage": "https://ever.co",
"main": "./bin/ever.js",
"private": false,
"author": {
"name": "Ever Co. LTD",
"email": "ever@ever.co",
"url": "https://ever.co"
},
"scripts": {
"build": "cargo build --release",
"build:debug": "cargo build",
"start": "node ./bin/ever.js",
"sync:versions": "node ./scripts/sync-package-versions.js",
"prepare:platform-package": "node ./scripts/prepare-platform-package.js",
"check:publish-prereqs": "node ./scripts/check-npm-publish-prereqs.js",
"test": "echo TODO: tests",
"release": "np",
"postinstall": "node ./npm/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ever-co/ever-cli.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"ever": "./bin/ever.js"
},
"optionalDependencies": {
"@ever-co/cli-darwin-arm64": "0.1.0",
"@ever-co/cli-darwin-x64": "0.1.0",
"@ever-co/cli-linux-arm64-gnu": "0.1.0",
"@ever-co/cli-linux-x64-gnu": "0.1.0",
"@ever-co/cli-linux-x64-musl": "0.1.0",
"@ever-co/cli-win32-arm64-msvc": "0.1.0",
"@ever-co/cli-win32-x64-msvc": "0.1.0"
},
"keywords": [
"cli",
"ever",
"router",
"platform",
"ecosystem"
],
"bugs": {
"url": "https://github.com/ever-co/ever-cli/issues"
},
"devDependencies": {
"np": "^10.2.0"
},
"dependencies": {},
"engines": {
"node": ">=18.0.0"
}
}