-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 909 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
40
{
"name": "formlid-js",
"author": "dorage",
"version": "2.0.0",
"description": "Formlid-js is Form helper package for Solid-JS with Yup as the validation schema",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && npx tsc",
"publish": "rm -rf lib && npm run build && npm publish",
"test": "jest"
},
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"keywords": [
"solid-js",
"solid",
"signal",
"form",
"fast",
"simple",
"easy"
],
"repository": {
"type": "git",
"url": "https://github.com/dorage/formlid-js.git"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@solidjs/testing-library": "^0.8.4",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"solid-jest": "^0.2.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"solid-js": "^1.6.14",
"yup": "^1.0.2"
}
}