-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·97 lines (97 loc) · 2.46 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
{
"name": "sink-extension",
"version": "0.0.1",
"description": "Chrome extension for your Sink.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zhuzhuyule/sink-extension.git"
},
"scripts": {
"build": "vite build",
"dev": "nodemon",
"test": "jest",
"test:cov": "jest --coverage",
"format": "prettier src/ scripts/ --write"
},
"type": "module",
"packageManager": "pnpm@9.1.1",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@preact/preset-vite": "^2.9.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/preact": "^3.2.4",
"@types/chrome": "^0.0.270",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.0",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"eslint": "^9.9.0",
"eslint-config-preact": "^1.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-preact": "^4.1.1",
"nodemon": "^3.1.4",
"postcss": "^8.4.41",
"preact": "^10.23.2",
"preact-render-to-string": "^6.5.9",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"preact",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"globals": {
"chrome": "readonly"
},
"rules": {
"prettier/prettier": [
"warn",
{
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
}
]
}
},
"dependencies": {
"jotai": "^2.9.3",
"qrcode": "^1.5.4"
}
}