-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.41 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@reactgjs/react-gtk",
"version": "0.0.1",
"bin": {
"react-gtk": "./bin/react-gtk.sh"
},
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./cli": {
"types": "./dist/types/cli.d.ts",
"import": "./dist/esm/cli.mjs",
"require": "./dist/cjs/cli.cjs"
},
"./polyfills/esm/*.mjs": "./polyfills/esm/*.mjs",
"./runtime/esm/*.mjs": "./runtime/esm/*.mjs"
},
"files": [
"bin",
"dist",
"polyfills",
"runtime",
"cli.js",
"gapp:env.d.ts",
"LICENSE",
"package.json",
"README.md",
"resources.d.ts"
],
"scripts": {
"fix:lint": "oxlint --fix .",
"fix:fmt": "dprint fmt ./src/**/* && dprint fmt ./__tests__/**/*",
"test:unit": "gest --verbose",
"test:lint": "oxlint .",
"test:fmt": "dprint check ./src/**/* && dprint check ./__tests__/**/*",
"test:tsc": "tsc --noEmit",
"build": "node ./scripts/build.cjs"
},
"keywords": [
"react",
"gtk",
"gtk3",
"gjs",
"gnome"
],
"repository": {
"url": "https://github.com/react-gjs/react-gtk"
},
"description": "",
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": ""
},
"dependencies": {
"@reactgjs/renderer": "^0.0.1-beta.4",
"buffer": "^6.0.3",
"clify.js": "^1.0.0-beta.5",
"dedent": "^1.5.3",
"dilswer": "2.1.1",
"esbuild": "^0.24.0",
"fs-gjs": "^1.0.1",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"path-gjsify": "^1.0.0",
"rimraf": "^4.4.1",
"tar": "^6.2.0",
"termx-markup": "~2.0.2",
"whatwg-url-without-unicode": "^8.0.0-3"
},
"devDependencies": {
"@ncpa0cpl/nodepack": "^2.3.3",
"@reactgjs/gest": "^0.6.3",
"@swc/core": "^1.5.5",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^20.12.12",
"@types/tar": "^6.1.6",
"dprint": "^0.45.1",
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#4215793",
"gjs-esm-types": "^0.0.4",
"husky": "latest",
"oxlint": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "latest",
"ws": "^8.14.1"
},
"peerDependencies": {
"ts-node": "^10.9.1"
},
"packageManager": "[email protected]"
}