-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2 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
{
"name": "@simulacrum/github-api-simulator",
"version": "0.8.0",
"description": "Provides common functionality to frontend app and plugins.",
"keywords": [
"emulation",
"github-api",
"integration testing",
"mock",
"mocking",
"simulation"
],
"bugs": {
"url": "https://github.com/thefrontside/simulacrum/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/simulacrum.git",
"directory": "packages/github-api"
},
"bin": "bin/start.mjs",
"files": [
"README.md",
"dist",
"src",
"schema",
"repository-mock-data"
],
"type": "module",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"exports": {
".": {
"development": "./src/index.ts",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
},
"scripts": {
"bench": "vitest bench",
"build": "tsdown",
"generate": "graphql-codegen",
"lint": "oxlint",
"prepack": "pnpm run generate && pnpm run build",
"start": "node --experimental-transform-types --watch ./example/start.ts",
"start:bin": "node ./bin/start.js",
"sync:schema:rest": "node --experimental-transform-types ./sync.ts",
"test": "vitest run",
"test:watch": "vitest watch",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@faker-js/faker": "^9.3.0",
"@graphql-tools/utils": "^10.9.1",
"@simulacrum/foundation-simulator": "^0.8.0",
"assert-ts": "^0.3.4",
"express": "^5.2.1",
"graphql": "^16.9.0",
"graphql-yoga": "^5.15.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-resolvers": "^4.5.1",
"@octokit/graphql": "^9.0.1",
"@types/express": "^5.0.6"
}
}