-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 917 Bytes
/
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
{
"name": "typograph",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"types": "./dist/main.d.ts",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "vitest --typecheck",
"dev": "concurrently \"vite\" \"tsx demo/server/index.ts\"",
"build": "vite build"
},
"dependencies": {
"dedent": "^1.5.3",
"graphql": "^16.9.0",
"ts-morph": "^24.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"urql": "^4.2.1",
"vite": "^6.0.7"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"graphql-yoga": "^5.10.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
}
}