-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 882 Bytes
/
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
{
"name": "@gapu/formix",
"version": "2.0.2",
"scripts": {
"build": "tsup ./src/index.tsx --dts",
"build:w": "tsup ./src/index.tsx --dts --watch",
"test": "vitest run",
"test:w": "vitest watch",
"test:c": "vitest run --coverage"
},
"files": [
"dist"
],
"module": "dist/index.jsx",
"type": "module",
"types": "dist/index.d.ts",
"devDependencies": {
"@solidjs/testing-library": "^0.8.8",
"@testing-library/jest-dom": "^6.4.6",
"@types/bun": "latest",
"@vitest/coverage-v8": "2.1.8",
"jsdom": "^24.1.0",
"solid-js": "^1.8.18",
"tsup": "^8.1.0",
"typescript": "^5.7.2",
"vite-plugin-solid": "^2.10.2",
"vitest": "2.1.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"solid-js": "*",
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}