forked from paulhenry46/pgp-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "bulwark-openpgp-true-e2e",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "esbuild ./src/index.tsx --bundle --format=cjs --platform=browser --charset=utf8 --outfile=dist/index.js --external:react --external:react-dom --external:react-dom/client --external:react/jsx-runtime --external:@plugin-host",
"dev": "npm run build -- --watch",
"package": "npm run build && cp manifest.json dist/ && cd dist && zip -X ../pgpe2e.zip manifest.json index.js"
},
"dependencies": {
"mimetext": "^3.0.28",
"openpgp": "^6.3.1"
},
"devDependencies": {
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"esbuild": "^0.24.0",
"typescript": "^6.0.3"
}
}