-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
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
{
"name": "@simulacrum/github-api-simulator",
"version": "0.5.1",
"private": false,
"description": "Provides common functionality to frontend app and plugins.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/simulacrum.git",
"directory": "packages/github-api"
},
"files": [
"dist",
"README.md",
"schema",
"repository-mock-data"
],
"bin": "bin/start.js",
"scripts": {
"lint": "echo noop",
"prepack": "npm run build",
"build:cjs": "tsc -build tsconfig.dist.json",
"build:esm": "tsc --build tsconfig.esm.json",
"build": "npm run generate && npm run build:cjs && npm run build:esm && copyfiles -f src/schema/* dist/schema",
"start": "node --import=tsx ./example/start.ts",
"start:bin": "node ./bin/start.js",
"generate": "graphql-codegen",
"test": "echo not.....yet"
},
"dependencies": {
"@faker-js/faker": "^9.3.0",
"@simulacrum/foundation-simulator": "0.2.1",
"assert-ts": "^0.3.4",
"graphql": "^16.9.0",
"graphql-yoga": "^5.10.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@types/express": "^4.17.21",
"copyfiles": "^2.4.1",
"tsx": "^4.19.2",
"typescript": "^5.4.5"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./main": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js"
},
"./github-topics.json": {
"import": "./repository-mock-data/github-topics.json",
"require": "./repository-mock-data/github-topics.json"
},
"./repository-names.json": {
"import": "./repository-mock-data/github-topics.json",
"require": "./repository-mock-data/repository-names.json"
}
},
"typesVersions": {
"*": {
"*": [
"dist/esm/index.d.ts"
]
}
},
"volta": {
"extends": "../../package.json"
}
}