-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bagon-hooks",
"version": "0.0.6",
"description": "A collection of zero-dependency hooks for SolidJS forked directly from Mantine Hooks.",
"license": "MIT",
"author": "Carlo Taleon",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Blankeos/bagon-hooks.git"
},
"homepage": "https://github.com/Blankeos/bagon-hooks#readme",
"bugs": {
"url": "https://github.com/Blankeos/bagon-hooks/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"gen:docs": "bun run scripts/generate-code-examples.ts && bun run scripts/generate-hooks-count.ts",
"build": "tsup",
"build:site": "vite build dev",
"preview:site": "vite preview dev",
"test": "concurrently bun:test:*",
"test:client": "vitest",
"test:ssr": "bun run test:client --mode ssr",
"prepublishOnly": "bun run build",
"ci": "bun run lint && bun run build",
"publish-ci": "bun run lint && bun run build && changeset publish",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently bun:lint:*",
"lint:code": "eslint .",
"lint:types": "tsc --noemit",
"update-deps": "bunx npm-check-updates --format group --interactive",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@mdx-js/rollup": "^3.0.1",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^9.18.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-solid": "^0.14.5",
"fluid-tailwind": "^1.0.3",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"remark-gfm": "^4.0.0",
"shiki": "^1.22.0",
"solid-js": "^1.9.2",
"solid-jsx": "^1.1.4",
"tailwindcss": "^3.4.14",
"tsup": "^8.3.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.6.3",
"vike": "^0.4.199",
"vike-solid": "^0.7.6",
"vite": "^5.4.9",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"keywords": [
"solid",
"mantine",
"solid-js",
"hooks",
"solid-hooks",
"state"
],
"engines": {
"node": ">=18"
}
}