-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "typograph",
"type": "module",
"files": [
"lib",
"dist"
],
"main": "./lib/main.ts",
"module": "./lib/main.ts",
"exports": {
".": {
"types": "./lib/main.ts",
"import": "./lib/main.ts",
"default": "./lib/main.ts"
},
"./integrations/urql": {
"types": "./lib/integrations/urql.ts",
"import": "./lib/integrations/urql.ts",
"default": "./lib/integrations/urql.ts"
}
},
"types": "./lib/main.ts",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "vitest --typecheck --run",
"dev": "npm --prefix ./demo run dev",
"build": "vite build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"dedent": "^1.5.3",
"graphql": "^16.9.0",
"ts-morph": "^24.0.0",
"typescript": "^5.6.3",
"vite": "^6.0.7"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"urql": "^4.2.1",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.2"
}
}