-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2 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
79
{
"name": "@drizzle-team/tento",
"version": "0.1.3",
"repository": "https://github.com/drizzle-team/tento",
"author": "Drizzle Team",
"license": "MIT",
"description": "",
"module": "index.js",
"main": "index.cjs",
"type": "module",
"bin": {
"tento": "./cli/cli.cjs"
},
"scripts": {
"lint": "biome lint .",
"gql": "graphql-codegen --config .graphqlrc.ts",
"build": "tsx build.ts",
"b": "pnpm build"
},
"keywords": [],
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.3",
"@biomejs/biome": "1.4.1",
"@drizzle-team/tento": "link:./dist",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@microsoft/api-extractor": "^7.38.5",
"@shopify/admin-api-client": "^0.1.0",
"@shopify/graphql-client": "^0.8.0",
"@shopify/shopify-api": "^8.1.1",
"@shopify/storefront-api-client": "^0.1.1",
"@types/node": "^20.10.3",
"@types/prompt": "^1.1.8",
"@types/semver": "^7.5.6",
"arg": "^5.0.2",
"chalk": "^5.3.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"esbuild": "^0.19.8",
"esbuild-plugin-replace": "^1.4.0",
"graphql": "^16.8.1",
"prompt": "^1.3.0",
"semver": "^7.5.4",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"valibot": "^0.23.0",
"znv": "^0.4.0"
},
"dependencies": {
"tsx": "^4.6.2"
},
"exports": {
".": {
"import": {
"types": "./client/index.d.ts",
"default": "./client/index.js"
},
"require": {
"types": "./client/index.d.cts",
"default": "./client/index.cjs"
},
"types": "./client/index.d.ts",
"default": "./client/index.js"
},
"./cli": {
"import": {
"types": "./cli/index.d.ts",
"default": "./cli/index.js"
},
"require": {
"types": "./cli/index.d.cts",
"default": "./cli/index.cjs"
},
"types": "./cli/index.d.ts",
"default": "./cli/index.js"
}
}
}