-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.24 KB
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
51
52
53
54
55
56
57
58
{
"name": "smorf",
"version": "1.0.0",
"description": "Form library for SolidJS.",
"keywords": [
"forms",
"solidjs",
"solid",
"typescript"
],
"repository": "github:glzr-io/smorf",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles": "./dist/index.css"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch src",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"prettier": "@glzr/style-guide/prettier",
"dependencies": {
"@solid-primitives/map": "0.6.0",
"@solid-primitives/set": "0.6.0",
"type-fest": "4.26.1",
"zod": "3.24.2"
},
"devDependencies": {
"@glzr/style-guide": "1.1.0",
"prettier": "3.1.1",
"solid-js": "1.9.3",
"tsup": "7.2.0",
"tsup-preset-solid": "2.1.0",
"typescript": "5.5.3"
},
"peerDependencies": {
"solid-js": ">=1.7.0"
},
"packageManager": "pnpm@9.4.0"
}