-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "solid-awesome-hooks",
"version": "1.9.2",
"description": "A collection of awesome hooks for solid-js",
"files": [
"dist"
],
"type": "module",
"main": "dist/index/index.module.js",
"module": "dist/index/index.module.js",
"types": "dist/index/index.d.ts",
"exports": {
".": {
"solid": "./dist/index/index.js",
"import": "./dist/index/index.module.js",
"browser": "./dist/index/index.module.js",
"node": "./dist/index/index.common.js",
"require": "./dist/index/index.common.js",
"types": "./dist/index/index.d.ts"
}
},
"sideEffects": false,
"author": "Vladislav Lipatov",
"repository": {
"type": "git",
"url": "git+https://github.com/elite174/solid-awesome-hooks"
},
"keywords": [
"solid",
"solidjs",
"hooks",
"collection"
],
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"build:lib": "rollup -c rollup.config.js",
"serve": "vite preview"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"babel-preset-solid": "^1.7.7",
"rollup": "^3.26.2",
"rollup-preset-solid": "^2.0.1",
"solid-js": "^1.7.12",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-solid": "^2.7.0"
},
"peerDependencies": {
"solid-js": "^1.7"
},
"homepage": "https://github.com/elite174/solid-awesome-hooks",
"bugs": {
"url": "https://github.com/elite174/solid-awesome-hooks/issues"
},
"publishConfig": {
"access": "public"
},
"private": false
}