-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "solidjs-window-manager",
"version": "1.1.3",
"description": "Create a window based UI that is persistent in localstorage.",
"license": "MIT",
"author": "Andrei Telteu",
"homepage": "https://github.com/AndreiTelteu/solidjs-window-manager#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AndreiTelteu/solidjs-window-manager.git"
},
"bugs": {
"url": "https://github.com/AndreiTelteu/solidjs-window-manager/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/dev.cjs"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"typesVersions": {},
"scripts": {
"build": "tsup"
},
"peerDependencies": {
"solid-js": "1.*"
},
"dependencies": {
"solidjs-storex": "^1.0.6"
},
"devDependencies": {
"esbuild": "^0.19.2",
"esbuild-plugin-solid": "^0.5.0",
"solid-js": "^1.7.11",
"tsup": "^7.2.0",
"tsup-preset-solid": "^2.0.2",
"typescript": "^5.1.6"
},
"keywords": [
"solidjs",
"window",
"manager",
"window-manager",
"windows-manager"
],
"browser": {}
}