emulate 0.0.0 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,53 @@
1
1
  {
2
2
  "name": "emulate",
3
- "version": "0.0.0",
4
- "description": "Coming soon",
5
- "main": "index.js",
6
- "author": "",
7
- "license": "MIT",
3
+ "version": "0.1.0",
4
+ "description": "Local drop-in replacement services for CI and no-network sandboxes",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "homepage": "https://emulate.dev",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": ""
10
+ "url": "https://github.com/vercel-labs/emulate.git",
11
+ "directory": "packages/emulate"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/vercel-labs/emulate/issues"
15
+ },
16
+ "keywords": [
17
+ "emulator",
18
+ "mock",
19
+ "api",
20
+ "vercel",
21
+ "github",
22
+ "google",
23
+ "oauth",
24
+ "testing",
25
+ "ci",
26
+ "local-development"
27
+ ],
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "bin": {
32
+ "emulate": "./dist/index.js"
33
+ },
34
+ "dependencies": {
35
+ "@hono/node-server": "^1",
36
+ "commander": "^14",
37
+ "picocolors": "^1.1.1",
38
+ "yaml": "^2",
39
+ "@internal/github": "0.1.0",
40
+ "@internal/google": "0.1.0",
41
+ "@internal/core": "0.1.0",
42
+ "@internal/vercel": "0.1.0"
43
+ },
44
+ "devDependencies": {
45
+ "tsup": "^8",
46
+ "typescript": "^5.7"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "clean": "rm -rf dist .turbo"
11
52
  }
12
53
  }
package/README.md DELETED
@@ -1,3 +0,0 @@
1
- # emulate
2
-
3
- Coming soon.
package/index.js DELETED
@@ -1,2 +0,0 @@
1
- // Coming soon
2
- module.exports = {};