-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "solid-resizable-panels",
"version": "0.5.4",
"description": "Solid-js components for making resizable panels",
"author": "Vladislav Lipatov",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"solid": "./dist/index.js",
"import": "./dist/index.js",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"private": false,
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elite174/solid-panels.git"
},
"bugs": {
"url": "https://github.com/elite174/solid-panels/issues"
},
"homepage": "https://github.com/elite174/solid-panels#readme",
"scripts": {
"dev": "vite",
"build:lib": "vite build",
"build": "vite build -c vite-app.config.ts",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@solidjs/testing-library": "0.8.7",
"jsdom": "24.0.0",
"solid-js": "1.8.16",
"solid-resizable-panels": "0.5.2",
"typescript": "5.4.3",
"vite": "5.2.6",
"vite-plugin-dts": "3.8.1",
"vite-plugin-solid": "2.10.2",
"vite-plugin-static-copy": "1.0.2",
"vitest": "1.4.0"
},
"peerDependencies": {
"solid-js": "^1.7"
},
"publishConfig": {
"access": "public"
}
}