forked from emadow/mailspring-avatars
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 1.08 KB
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
{
"name": "mailspring-avatars",
"main": "./lib/main",
"version": "2.0.1",
"description": "Avatars in your Message list",
"repository": {
"type": "git",
"url": "https://github.com/Striffly/mailspring-avatars"
},
"scripts": {
"build": "tsc",
"release": "ver=$(node -p \"require('./package.json').version\") && file=\"mailspring-avatars-$ver.zip\" && echo \"📦 Creating release $file...\" && rm -f $file && rm -rf node_modules && pnpm install --silent && pnpm build && rm -rf node_modules && pnpm install --prod --config.node-linker=hoisted --silent && git ls-files | zip -q $file -@ && zip -qur $file lib node_modules && pnpm install --silent && echo \"✓ Release archive created: $file\""
},
"engines": {
"mailspring": ">=1.6.3",
"node": ">=24"
},
"windowTypes": {
"default": true,
"composer": true
},
"dependencies": {
"create-react-class": "^15.7.0",
"prop-types": "^15.8.1",
"react": "^19.2.3",
"validator": "^13.15.26"
},
"devDependencies": {
"@types/react": "^19.2.8",
"typescript": "^5.9.3"
},
"license": "MIT"
}