-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@workos/emulate",
"version": "0.7.0",
"type": "module",
"description": "Local WorkOS API emulator for tests and development",
"repository": {
"type": "git",
"url": "git+https://github.com/workos/emulate.git"
},
"keywords": [
"workos",
"emulator",
"authkit",
"sso",
"testing"
],
"bin": {
"workos-emulate": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./workos": {
"import": "./dist/workos/index.js",
"types": "./dist/workos/index.d.ts"
}
},
"dependencies": {
"@hono/node-server": "^1",
"chalk": "^5.6.2",
"hono": "^4",
"semver": "^7.7.4",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "~22.19.7",
"@types/semver": "^7.7.1",
"@workos/openapi-spec": "^0.59.0",
"husky": "^9.1.7",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.11"
},
"packageManager": "bun@1.3.14",
"scripts": {
"clean": "rm -rf ./dist",
"build": "rm -rf ./dist && tsc && chmod +x ./dist/cli.js",
"build:binary": "bun build --compile --no-compile-autoload-dotenv --no-compile-autoload-bunfig ./src/cli.ts --outfile ./dist/workos-emulate",
"start": "bun ./dist/cli.js",
"dev": "bun src/cli.ts",
"test": "bun test",
"test:node": "bun run build && node scripts/smoke-node.mjs",
"test:package": "bun run build && node scripts/check-package.mjs",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"gen:routes": "bun scripts/gen-routes.ts",
"gen:events": "bun scripts/gen-events.ts",
"gen:shapes": "bun scripts/gen-shapes.ts",
"gen:supported": "bun scripts/gen-supported.ts",
"check:coverage": "bun scripts/check-coverage.ts",
"prepare": "husky"
},
"author": "WorkOS",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}