-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 2.87 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/filmbudd/filmbudd-lite/issues",
"email": "support@filmbudd.com"
},
"author": "Filmbudd LLC <support@filmbudd.com> (https://filmbudd.com/)",
"homepage": "https://github.com/filmbudd/filmbudd-lite",
"name": "@filmbuddllc/filmbudd-lite",
"description": "manifest.json description",
"version": "24.6.2",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:package": "tsc -p lib/tsconfig.json",
"test": "vitest run",
"dev": "cross-env NODE_ENV=development wxt",
"dev:firefox": "wxt -b firefox",
"build": "cross-env NODE_ENV=production wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "cross-env NODE_ENV=production wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@filmbuddllc/filmbudd-lite-widget": "^24.6.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"cross-env": "^7.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"wxt": "^0.19.13"
},
"eslintConfig": {
"env": {
"webextensions": true,
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react-refresh"
],
"rules": {
"no-empty": "warn",
"max-len": [
"warn",
{
"code": 150,
"ignoreUrls": true
}
],
"comma-dangle": [
"warn",
{
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "never",
"exports": "never",
"functions": "always-multiline"
}
],
"no-trailing-spaces": [
"error",
{
"ignoreComments": true
}
],
"indent": [
"error",
2
],
"quotes": [
"warn",
"double"
],
"semi": [
"error",
"always"
],
"linebreak-style": [
"warn",
"unix"
],
"array-bracket-newline": [
"warn",
{
"minItems": 2
}
],
"array-element-newline": [
"warn",
{
"minItems": 2
}
],
"@typescript-eslint/no-explicit-any": "off",
"react-refresh/only-export-components": "off"
}
},
"prettier": {
"printWidth": 150,
"useTabs": false,
"singleQuote": false
}
}