-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.91 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
55
{
"name": "twitter-translator",
"description": "Adds external & internal translators to various sites.",
"author": "Magic <[email protected]>",
"version": "2.5.1",
"license": "GPL-3.0",
"userJS": {
"version": "2.6.1",
"name": "Twitter External Translator",
"bugs": "https://github.com/magicoflolis/twitter-translator/issues/new",
"homepage": "https://github.com/magicoflolis/twitter-translator#twitter-external-translator",
"icon": "https://abs.twimg.com/favicons/twitter.ico",
"url": "https://github.com/magicoflolis/twitter-translator/releases/latest/download/twittertranslator.user.js"
},
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:UserJS\" \"npm run dev:Server\" \"npm run dev:Sass\"",
"dev:UserJS": "node ./tools/userscript.mjs",
"dev:Sass": "sass -w --no-source-map ./src/Common/sass:./dist/css -s compressed",
"dev:Server": "http-server ./build/UserJS -s --no-dotfiles -c-1",
"pub": "concurrently \"pnpm run pub:Sass\" \"pnpm run pub:UserJS\"",
"pub:Sass": "sass --no-source-map ./src/Common/sass:./dist/css -s compressed",
"pub:UserJS": "node -r dotenv/config ./tools/userscript.mjs dotenv_config_path=./dist/UserJS/.env"
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint__js": "^8.42.0",
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"globals": "^13.20.0",
"http-server": "^14.1.1",
"node-watch": "^0.7.3",
"prettier": "^3.0.0",
"sass": "^1.64.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicoflolis/twitter-translator.git"
},
"keywords": [
"userjs",
"greasemonkey",
"violentmonkey",
"tampermonkey",
"javascript",
"browser"
],
"webExt": {
"sourceDir": "./dist/WebExtension/",
"artifactsDir": "./build/tmp/"
},
"private": true
}