-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) 路 1.61 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 1.61 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
{
"name": "@devscholar/node-with-window",
"version": "0.0.19",
"description": "lightweight Electron substitute for Node.js/Deno/Bun",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"nww": "./bin/nww.js"
},
"files": [
"bin",
"dist",
"runtimes",
"scripts"
],
"scripts": {
"build": "node scripts/build.js",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write src",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && node scripts/pre-publish.js",
"postpublish": "node scripts/post-publish.js"
},
"keywords": [
"electron",
"node",
"deno",
"bun"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@girs/gdk-4.0": "^4.0.0-4.0.0-rc.1",
"@girs/gio-2.0": "^2.88.0-4.0.0-rc.1",
"@girs/glib-2.0": "^2.88.0-4.0.0-rc.1",
"@girs/gtk-4.0": "^4.23.0-4.0.0-rc.1",
"@girs/soup-3.0": "^3.6.6-4.0.0-rc.1",
"@girs/webkit-6.0": "^2.52.1-4.0.0-rc.1",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@devscholar/node-ps1-dotnet": "0.0.19",
"@devscholar/node-with-gjs": "0.0.14",
"@devscholar/node-with-jxa": "0.0.3"
}
}