-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 2.38 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
45
46
47
48
49
50
51
52
53
54
{
"name": "presences",
"version": "3.0.0",
"author": "Timeraa",
"license": "MPL-2.0",
"scripts": {
"cleanup": "rm -rf Localization && rm -rf Presences && rm -rf Extension/Pages/* && touch Extension/Pages/.gitkeep",
"cleanup:win": "(if exist .\\Localization ( rmdir /s/q .\\Localization ) || true) && (if exist .\\Presences ( rmdir /s/q .\\Presences ) || true) && (if exist .\\Extension\\Pages ( rmdir /s/q .\\Extension\\Pages ) || true) && mkdir .\\Extension\\Pages && type nul > .\\Extension\\Pages\\.gitkeep",
"clone": "git clone https://github.com/PreMiD/Presences.git ./Presences && git clone https://github.com/PreMiD/Localization.git ./Localization",
"pu": "node ./presenceUpdater.js",
"pu:compile": "node ./node_modules/typescript/bin/tsc --module CommonJS --target ES2020 --esModuleInterop --removeComments --noUnusedParameters --noUnusedLocals --noFallthroughCasesInSwitch --newLine lf --inlineSourceMap ./presenceUpdater.ts",
"pack:webextension": "node package/updateVersion.js && node package/pack.js",
"pack": "npm run build && npm run pack:webextension",
"build": "npm run cleanup && npm run build:build",
"build:build": "npm run clone && npm run pu:compile && npm run pu && npm run build:webpack && npm run build:localisation",
"build:webpack": "webpack",
"build:localisation": "node locale.js",
"build:win": "npm run cleanup:win && npm run build:build"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/babel__core": "^7.1.16",
"@types/chrome": "^0.0.158",
"@types/glob": "^7.1.4",
"@types/mongodb": "4.0.7",
"@types/node": "^16.10.2",
"@types/prettier": "^2.4.1",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/cli-plugin-babel": "^4.5.6",
"archiver": "^5.0.2",
"axios": "^0.22.0",
"babel-loader": "^8.1.0",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"execa": "^4.0.3",
"glob": "^7.2.0",
"jsonschema": "^1.4.0",
"mongodb": "^3.6.9",
"prettier": "^2.4.1",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"terser": "^5.9.0",
"terser-webpack-plugin": "^4.2.2",
"typescript": "^4.4.3",
"vue": "^2.6.12",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}