-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@dangreaves/groq-query-builder",
"version": "0.21.0",
"license": "MIT",
"author": {
"name": "Dan Greaves",
"url": "https://dangreaves.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dangreaves/groq-query-builder"
},
"homepage": "https://github.com/dangreaves/groq-query-builder",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"LICENCE",
"README.md"
],
"scripts": {
"test": "vitest",
"prepublishOnly": "pnpm run build",
"build": "tsc && tsup src/index.ts --dts --format esm,cjs --clean"
},
"peerDependencies": {
"@sinclair/typebox": "^0.32.34",
"pino": "^9.2.0"
},
"devDependencies": {
"@sanity/client": "^6.20.1",
"@sinclair/typebox": "^0.32.34",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.14.9",
"pino": "^9.2.0",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.1.2+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2"
}