-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.47 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
{
"name": "gsolid",
"version": "0.2.0",
"description": "GTK renderer for solid-js",
"main": "./dist/index.js",
"type": "module",
"types": "./types/index.d.ts",
"sideEffect": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./jsx-runtime": {
"types": "./types/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js",
"require": "./dist/jsx-runtime.cjs"
},
"./widget": {
"types": "./types/widget.d.ts",
"import": "./dist/widget.jsx",
"require": null
},
"./gtk4": {
"types": "./types/gtk4/index.d.ts",
"import": "./dist/gtk4/index.js",
"require": "./dist/gtk4/index.cjs"
},
"./fetch": {
"types": "./types/fetch.d.ts",
"import": "./dist/fetch.js",
"require": "./dist/fetch.cjs"
},
"./store": {
"types": "./types/store.d.ts",
"import": "./dist/store.js",
"require": "./dist/store.cjs"
},
"./web-ponyfill": {
"types": "./types/web-ponyfill.d.ts",
"import": "./dist/web-ponyfill.js",
"require": "./dist/web-ponyfill.cjs"
},
"./storage": {
"types": "./types/storage.d.ts",
"import": "./dist/storage.js",
"require": "./dist/storage.cjs"
}
},
"files": [
"./dist/**",
"./types/**",
"./.editorconfig",
"./LICENSE",
"./tsconfig.json",
"./README.md"
],
"scripts": {
"build:types": "tsc",
"build:esm": "bun run build.ts",
"prepare": "bun run build:esm && bun run build:types && bun run build:doc",
"build:doc": "bun -b typedoc"
},
"keywords": [
"gjs",
"solid-js",
"jsx",
"tsx"
],
"maintainers": [
"Rubicon Rowe <l1589002388@gmail.com>"
],
"license": "Apache-2.0",
"dependencies": {
"solid-js": "^1.7.8"
},
"devDependencies": {
"@girs/girepository-2.0": "1.78.1-3.3.0",
"@girs/gjs": "^3.3.0",
"@girs/gtk-4.0": "4.12.5-3.3.0",
"@girs/soup-3.0": "3.4.4-3.3.0",
"esbuild": "^0.24.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typedoc": "^0.26.7",
"typescript": "^5.1.6"
}
}