-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
114 lines (114 loc) · 3.12 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@sanity/groq-store",
"version": "4.1.3",
"description": "Stream dataset to memory for in-memory querying",
"keywords": [
"sanity",
"memory",
"query",
"groq"
],
"homepage": "https://github.com/sanity-io/groq-store#readme",
"bugs": {
"url": "https://github.com/sanity-io/groq-store/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sanity-io/groq-store.git"
},
"license": "MIT",
"author": "Sanity.io <hello@sanity.io>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": {
"source": "./src/browser/index.ts",
"require": "./dist/index.browser.js",
"import": "./dist/index.browser.mjs"
},
"deno": "./dist/index.browser.mjs",
"worker": "./dist/index.browser.mjs",
"source": "./src/index.ts",
"require": "./dist/index.js",
"node": {
"module": "./dist/index.mjs",
"import": "./dist/index.cjs.mjs"
},
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"browser": {
"./dist/index.js": "./dist/index.browser.js",
"./dist/index.mjs": "./dist/index.browser.mjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "pkg build --strict && pkg --strict",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"start": "cd example && npm start",
"test": "vitest"
},
"browserslist": [
"> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11",
"maintained node versions"
],
"dependencies": {
"@sanity/eventsource": "^5.0.0",
"@sanity/types": "^3.14.5",
"fast-deep-equal": "3.1.3",
"groq": "^3.14.5",
"groq-js": "1.4.3",
"mendoza": "3.0.5",
"simple-get": "4.0.1",
"split2": "4.2.0",
"throttle-debounce": "5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@sanity/client": "^6.15.5",
"@sanity/pkg-utils": "^3.0.0",
"@sanity/semantic-release-preset": "^4.1.7",
"@types/node": "^18.18.4",
"@types/split2": "^4.2.3",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-sanity": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"ls-engines": "^0.9.1",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.12",
"rimraf": "^5.0.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vitest-github-actions-reporter": "^0.11.1"
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}