-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.42 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
{
"name": "node-systray-v2",
"version": "2.0.0",
"description": "A cross-platform systray library for node.js with precompiled binaries.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"module": "dist/index.esm.js",
"exports": {
".": [
{
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/index.js"
]
},
"scripts": {
"doc": "typedoc src/index.ts",
"test": "jest test/e2e test/unit",
"test:unit": "jest test/unit",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rimraf dist && rollup --config ./rollup.config.mjs",
"prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.1",
"@types/chai": "^4.3.4",
"@types/debug": "^0.0.30",
"@types/eslint": "^8.4.10",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.2.4",
"@types/node": "^18.18.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"magic-string": "^0.30.10",
"prettier": "^2.8.1",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.9.1",
"typedoc": "0.23.23",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "^4.9.4"
},
"files": [
"dist/",
"types/",
"traybin/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Edgar-P-Yan/node-systray-v2.git"
},
"keywords": [
"systray",
"tray",
"gui"
],
"author": {
"name": "Edgar Pogosyan",
"email": "[email protected]",
"url": "https://github.com/Edgar-P-Yan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Edgar-P-Yan/node-systray-v2/issues"
},
"homepage": "https://github.com/Edgar-P-Yan/node-systray-v2#readme",
"dependencies": {
"debug": "^4.3.5"
}
}