-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"private": true,
"name": "google-sheets-tabs-on-top",
"version": "0.0.0",
"description": "Move Google Sheets tabs on top",
"main": "",
"scripts": {
"dev": "webextension-toolbox dev",
"build": "webextension-toolbox build",
"lint": "eslint ./app --max-warnings 0 --cache --fix && tsc --noEmit",
"supported-browsers": "yarn browserslist",
"archive": "git archive HEAD -o storage/source.zip",
"preinstall": "typesync || :"
},
"repository": {
"type": "git",
"url": "git://github.com/yamadashy/google-sheets-tabs-on-top.git"
},
"keywords": [
"google",
"sheets",
"tab",
"documents"
],
"author": "yamadashy <[email protected]> (https://github.com/yamadashy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yamadashy/google-sheets-tabs-on-top/issues"
},
"dependencies": {
"core-js": "3.39.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.17.0",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.9.7",
"@types/chrome": "^0.0.287",
"@types/core-js": "2.5.8",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/eslint__js": "~8.42.3",
"@types/jquery": "^3.5.32",
"@types/prettier": "^3.0.0",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@webextension-toolbox/webextension-toolbox": "^7.1.1",
"babel-loader": "^9.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"renovate": "^39.82.1",
"typescript": "^5.7.2",
"typesync": "^0.14.0",
"webpack-bundle-analyzer": "^4.10.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
},
"browserslist": [
"last 40 Chrome version",
"last 40 Firefox version",
"last 40 Opera version",
"last 40 Edge version"
],
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"trailingComma": "all",
"quoteProps": "consistent"
},
"engines": {
"node": ">=10",
"yarn": ">=4.5.3"
},
"packageManager": "[email protected]"
}