forked from umbrella22/Glasstron
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "glasstron",
"version": "0.1.1",
"description": "The go-to solution to Electron composition effects",
"funding": {
"url": "https://patreon.com/arytonex"
},
"main": "src/index.js",
"scripts": {
"build-exe": "i686-w64-mingw32-g++ -static -static-libgcc -static-libstdc++ -o native/dwm_exec.exe src/native/win32_dwm/lib/exec.cpp",
"build": "node ./binding.js",
"lint": "eslint src test",
"postinstall": "node ./binding.js",
"test": "electron ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AryToNeX/Glasstron.git"
},
"keywords": [
"electron",
"glass",
"blur",
"composition",
"transparency",
"api"
],
"author": "Naomi Calabretta <[email protected]> (http://arytonex.pw)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AryToNeX/Glasstron/issues"
},
"files": [
"native/*",
"src/*",
"LICENSE",
"binding.gyp",
"binding.js",
"package.json"
],
"homepage": "https://github.com/AryToNeX/Glasstron#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"electron": "~20",
"eslint": "^8.0.1",
"windowbar": "^1.7.3"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"x11": "^2.3.0"
}
}