-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "title-bar-replacer",
"version": "2.0.0",
"description": "Adds an alternative, theme-aware title bar and application menu that is more inline with Atom's UI design.",
"private": false,
"main": "./dist/title-bar-replacer",
"scripts": {
"build": "node ./esbuild.config.mjs",
"build-commit": "build-commit -o dist",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"title bar replacer",
"title bar",
"menu bar",
"ui",
"custom",
"replacer"
],
"repository": {
"type": "git",
"url": "https://github.com/sindrets/atom-title-bar-replacer"
},
"homepage": "https://atom.io/packages/title-bar-replacer",
"bugs": {
"url": "https://github.com/sindrets/atom-title-bar-replacer/issues"
},
"license": "GPL-3.0",
"engines": {
"atom": ">=1.53.0 <2.0.0"
},
"activationHooks": [],
"dependencies": {},
"devDependencies": {
"@types/atom": "^1.40.4",
"@types/node": "^14.10.0",
"build-commit": "^0.1.4",
"esbuild": "^0.8.36",
"jest": "^26.6.3",
"node": "^14.15.2",
"typescript": "^4.0.2"
}
}