-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.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
{
"name": "turbo-query",
"version": "2.2.0",
"license": "MIT",
"description": "Lightweight, isomorphic and framework agnostic asynchronous data management for modern UIs",
"author": {
"name": "Erik C. Forés",
"email": "[email protected]",
"url": "https://erik.cat"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"types": "./dist/turbo-query.d.ts",
"main": "./dist/turbo-query.umd.cjs",
"module": "./dist/turbo-query.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/turbo-query.js",
"require": "./dist/turbo-query.umd.cjs"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "vite build && tsc --skipLibCheck",
"dev": "vitest",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:cover": "vitest run --coverage",
"prepack": "npm run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint": "^8.57.0",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0",
"vite": "^5.2.8",
"vitest": "^1.4.0"
}
}