forked from binary-person/rammerhead
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
{
"name": "@rubynetwork/rammerhead",
"version": "1.3.6",
"description": "Easily use and run Rammerhead",
"main": "dist/index.js",
"type": "module",
"bin": {
"@rubynetwork/rammerhead": "dist/cli.js"
},
"scripts": {
"types": "tsc --declaration --emitDeclarationOnly --outDir dist/ --declarationMap",
"type-check": "tsc --noEmit",
"build": "babel src/ --out-dir dist/ --extensions '.ts' --copy-files",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruby-network/rammerhead.git"
},
"keywords": [
"monorepo",
"javascript",
"typescript",
"cli",
"rammerhead",
"proxy",
"backend"
],
"author": "MotorTruck1221",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruby-network/rammerhead/issues"
},
"homepage": "https://github.com/ruby-network/rammerhead#readme",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-syntax-import-attributes": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.10",
"typescript": "^5.4.5"
},
"dependencies": {
"commander": "^12.0.0",
"picocolors": "^1.0.1",
"@rubynetwork/rh": "^1.2.76"
}
}