-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "electron-as-wallpaper",
"version": "2.0.2",
"author": {
"name": "meslzy",
"email": "[email protected]",
"url": "https://meslzy.com/"
},
"description": "set your electron window as wallpaper behind desktop icons",
"repository": "github:meslzy/electron-as-wallpaper",
"bugs": {
"url": "https://github.com/meslzy/electron-as-wallpaper/issues"
},
"homepage": "https://github.com/meslzy/electron-as-wallpaper",
"publishConfig": {
"access": "public"
},
"keywords": [
"electron",
"wallpaper"
],
"types": "dist/main.d.ts",
"main": "dist/main.cjs",
"module": "dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
}
},
"type": "module",
"scripts": {
"watch": "tsup --watch",
"build": "tsup",
"neon:build": "cargo-cp-artifact -nc build/neon.node -- cargo build --message-format=json-render-diagnostics",
"neon:release": "npm run neon:build -- --release",
"install": "npm run neon:release",
"prepublishOnly": "npm run build"
},
"dependencies": {
"bindings": "^1.5.0",
"cargo-cp-artifact": "^0.1.9"
},
"devDependencies": {
"@meslzy/eslint": "^1.0.6",
"@meslzy/tsconfig": "^0.2.8",
"@types/bindings": "^1.5.5",
"@types/node": "^22.7.5",
"electron": "^32.2.1",
"eslint": "^9.12.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"files": [
"dist",
"src",
"Cargo.toml",
"license"
],
"license": "mit"
}