forked from Hugo-COLLIN/SaveMyPhind-conversation-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.73 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": "save-my-phind",
"version": "2.4.7",
"license": "RMD-C v1.0 License",
"scripts": {
"syncVersion": "node manage/syncVersions.js",
"licenses": "node manage/listLicenses.js",
"all": "npm run updateLicences && npm run build",
"watchAll": "nodemon --exec npm run all --watch",
"convert": "node manage/convertManifest.js",
"zip": "node manage/zip.js",
"---": "---",
"licenseList": "npm run syncVersion && npm run licenses",
"chrome": "npm run convert chrome && npm run build",
"firefox": "npm run convert firefox && npm run build",
"build": "node manage/initBuild.js && esbuild src/background.js --bundle --outdir=dist && esbuild src/main.js --bundle --outdir=dist",
"watch": "nodemon --exec npm run build --watch",
"prod": "npm run licenseList && npm run firefox && node manage/prodChanges.js && npm run zip && npm run chrome && node manage/prodChanges.js && npm run zip && node manage/devChanges.js",
"prodChrome": "npm run licenseList && npm run chrome && node manage/prodChanges.js && npm run zip",
"prodFirefox": "npm run licenseList && npm run firefox && node manage/prodChanges.js && npm run zip",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@types/jest": "^29.5.11",
"adm-zip": "^0.5.10",
"babel-jest": "^29.7.0",
"chrome-remote-interface": "^0.33.0",
"esbuild": "^0.18.11",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"license-checker": "^25.0.1",
"nodemon": "^2.0.22",
"selenium-webdriver": "^4.15.0"
},
"dependencies": {
"dompurify": "^3.0.4",
"showdown": "^2.1.0",
"turndown": "^7.1.2"
}
}