-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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": "@domoinc/ryuu-proxy",
"version": "5.1.0-beta.1",
"description": "a middleware that provides a proxy for local domo app development",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "pnpm test && pnpm run build",
"release:alpha": "pnpm run build && pnpm publish --tag alpha --no-git-checks",
"release:beta": "pnpm run build && pnpm publish --tag beta --no-git-checks",
"release:production": "pnpm run build && pnpm publish",
"clean": "rm -rf node_modules pnpm-lock.yaml && pnpm install"
},
"author": "AppTeam6 <Squad.AppTeam6@domo.com>",
"repository": {
"type": "git",
"url": "https://github.com/DomoApps/ryuu-proxy.git"
},
"files": [
"dist"
],
"license": "MIT",
"keywords": [
"domo",
"domo apps",
"domoapps",
"proxy",
"middleware",
"express",
"connect",
"koa",
"development",
"local-development",
"ryuu",
"cli"
],
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/configstore": "^6.0.2",
"@types/express": "^4.17.24",
"@types/node": "^22.13.0",
"mock-req": "^0.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^3.1.0"
},
"dependencies": {
"busboy": "^1.6.0",
"configstore": "^7.1.0",
"ryuu-client": "^5.0.0-beta.1"
},
"peerDependencies": {
"express": "^4.17.0 || ^5.0.0"
}
}