-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "telegram-vanilla-dark-desktop",
"type": "module",
"version": "1.1.1",
"description": "Dark theme for desktop telegram app",
"author": "VChet",
"license": "MIT",
"homepage": "https://github.com/VChet/telegram-vanilla-dark-desktop#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VChet/telegram-vanilla-dark-desktop.git"
},
"bugs": {
"url": "https://github.com/VChet/telegram-vanilla-dark-desktop/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"generate": "tsx src/generate.ts",
"build": "npm run generate all",
"lint:ts": "tsc --noEmit",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint -- --fix",
"lint:all": "npm run lint:ts && npm run lint:js",
"preversion": "npm run generate all",
"version": "tsx src/bump.ts"
},
"dependencies": {
"archiver": "^7.0.1",
"picocolors": "^1.1.1",
"pngjs": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/pngjs": "^6.0.5",
"eslint": "^9.17.0",
"neostandard": "^0.12.0"
}
}