-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "@reactgjs/renderer",
"version": "0.0.1-beta.4",
"main": "./dist/index.js",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"gi.d.ts"
],
"repository": {
"url": "https://github.com/react-gjs/renderer"
},
"description": "A React renderer for the Gnome JS. It provides components and methods allowing to use React to build native Gnome GTK applications.",
"license": "MIT",
"author": {
"name": "ncpa0cpl (Szymon Bretner)",
"email": "[email protected]"
},
"keywords": [
"react",
"gjs",
"react-gjs",
"react-gjs-renderer",
"gnome",
"gtk",
"linux",
"desktop",
"reconciler"
],
"scripts": {
"fix:lint": "oxlint --fix ./src",
"fix:fmt": "dprint fmt \"./src/**/*\" && dprint fmt \"./__tests__/**/*\"",
"test:unit": "gest",
"test:lint": "oxlint ./src",
"test:fmt": "dprint check \"./src/**/*\" && dprint check \"./__tests__/**/*\"",
"test:tsc": "tsc --noEmit",
"build:types": "tsc --declaration --emitDeclarationOnly",
"build:src": " node ./scripts/build.mjs",
"build": "yarn build:types && yarn build:src",
"prepare": "husky install"
},
"dependencies": {
"dilswer": "^2.1.1",
"react-reconciler": "^0.31.0",
"react": "^19.0.0"
},
"devDependencies": {
"@reactgjs/gest": "^0.6.3",
"@types/react-reconciler": "^0.28.9",
"@types/react": "^19.0.1",
"dprint": "^0.47.6",
"esbuild": "^0.24.0",
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#4215793",
"gjs-esm-types": "^0.0.4",
"husky": "^8.0.3",
"oxlint": "^0.15.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"gjs-esm-types": "^0.0.4"
},
"resolutions": {
"json5": "2.2.3"
},
"packageManager": "[email protected]"
}