-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "solid-create-form",
"version": "2.0.0",
"description": "Solid utility to control forms",
"main": "lib/index.js",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"size": "size-limit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/solid-create-form.git"
},
"bugs": {
"url": "https://github.com/SanichKotikov/solid-create-form/issues"
},
"homepage": "https://github.com/SanichKotikov/solid-create-form",
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"solid-js",
"form"
],
"peerDependencies": {
"solid-js": ">= 1.2.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "11.1.5",
"size-limit": "11.1.5",
"typescript": "5.6.2"
},
"size-limit": [
{
"path": "lib/index.js"
}
]
}