-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
95 lines (95 loc) · 2.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "groq-js",
"version": "1.14.0",
"keywords": [
"sanity",
"json",
"query",
"groq"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/groq-js.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"source": "./src/1.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./1": {
"source": "./src/1.ts",
"import": "./dist/1.mjs",
"require": "./dist/1.js",
"default": "./dist/1.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"1": [
"./dist/1.d.ts"
]
}
},
"files": [
"dist",
"src",
"LICENSE",
"API.md",
"README.md"
],
"scripts": {
"build": "pkg build --strict --check --clean",
"prepublishOnly": "npm run build",
"prettify": "prettier --write .",
"prettify-check": "prettier --check .",
"test": "tap --no-timeout --coverage-report=html --no-browser test/*.test.*",
"test:generate": "./test/generate.sh"
},
"browserslist": "extends @sanity/browserslist-config",
"prettier": "@sanity/prettier-config",
"tap": {
"check-coverage": false,
"node-arg": [
"-r",
"tsx/cjs"
]
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@sanity/pkg-utils": "6.10.2",
"@sanity/prettier-config": "^1.0.2",
"@sanity/semantic-release-preset": "^5.0.0",
"@types/debug": "^4.1.12",
"@types/tap": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-sanity": "^7.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ndjson": "^2.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.0",
"semantic-release": "^24.0.0",
"semver": "^7.5.4",
"tap": "^16.3.10",
"tsx": "^4.16.2",
"typescript": "5.5.3"
},
"engines": {
"node": ">= 14"
}
}