-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "@nexhub/vite-rspc-plugin",
"version": "1.0.0",
"description": "A vite plugin for auto-generating dedicated functions for RSPC per query, mutation, and subscription with typescript",
"type": "module",
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"scripts": {
"build": "tsc",
"prebuild": "rimraf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:jsr": "pnpx jsr publish --dry-run",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "rimraf dist node_modules",
"clean:dist": "rimraf dist",
"reinstall": "pnpm clean && pnpm install"
},
"keywords": [
"vite",
"rspc",
"plugin",
"typescript"
],
"author": "NexRX",
"license": "MIT",
"dependencies": {
"@rspc/client": "^0.3.1",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "2.1.8",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
}
}