generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "solid-click-outside",
"version": "0.0.1",
"description": "A SolidJS hook to detect clicks outside of an element",
"license": "MIT",
"author": "Amir Eslami",
"repository": {
"type": "git",
"url": "git+https://github.com/dotamir/solid-click-outside.git"
},
"homepage": "https://github.com/dotamir/solid-click-outside#readme",
"bugs": {
"url": "https://github.com/dotamir/solid-click-outside/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"
}
},
"scripts": {
"dev:build": "pnpm --filter dev run build --filter dev",
"dev:start": "pnpm --filter dev run dev",
"build": "tsup",
"pack": "concurrently pnpm:build pnpm:dev:build",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"concurrently": "^8.2.0",
"esbuild": "^0.18.15",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.45.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^22.1.0",
"prettier": "3.0.0",
"solid-js": "^1.7.8",
"tsup": "^7.1.0",
"tsup-preset-solid": "^2.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.33.0"
},
"keywords": [
"solid",
"hook",
"onclickoutside"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.6.0"
},
"typesVersions": {}
}