-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "groq-paginator",
"private": true,
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"lint": "eslint . --ext .ts --ignore-path .gitignore"
},
"dependencies": {
"@sanity/client": "^6.7.0"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@vitest/ui": "latest",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"groq-js": "^1.3.0",
"typescript": "^5.2.2",
"vite": "latest",
"vite-plugin-dts": "^3.6.0",
"vitest": "latest"
}
}