-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 4.38 KB
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
{
"name": "pearpass-app-browser-extension",
"private": true,
"version": "2.2.0",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build:main": "vite build --config vite.config.main.js",
"build:content": "vite build --config vite.config.content.js",
"build:background": "vite build --config vite.config.background.js",
"build:inject": "vite build --config vite.config.inject.js",
"build": "npm run lingui:extract && npm run lingui:compile && npm run build:main && npm run build:content && npm run build:background && npm run build:inject",
"build:watch:main": "vite build --watch --config vite.config.main.js --mode development",
"build:watch:content": "vite build --watch --config vite.config.content.js --mode development",
"build:watch:background": "vite build --watch --config vite.config.background.js --mode development",
"build:watch:inject": "vite build --watch --config vite.config.inject.js --mode development",
"build:watch": "npm-run-all --parallel lingui:extract lingui:compile build:watch:main build:watch:content build:watch:background build:watch:inject",
"preview": "vite preview",
"test": "jest",
"lint:fix": "eslint --fix ./src",
"lint": "eslint ./src",
"prepare": "husky",
"lingui:extract": "lingui extract",
"lingui:compile": "lingui compile",
"knip": "knip"
},
"dependencies": {
"@lingui/core": "5.1.2",
"@lingui/format-json": "5.1.2",
"@lingui/react": "5.1.2",
"@lingui/vite-plugin": "5.3.1",
"@noble/ciphers": "1.3.0",
"@noble/curves": "1.9.6",
"@reduxjs/toolkit": "2.5.0",
"@tailwindcss/vite": "4.1.4",
"@tetherto/pear-apps-lib-feedback": "git+https://github.com/tetherto/pear-apps-lib-feedback.git",
"@tetherto/pear-apps-lib-ui-react-hooks": "git+https://github.com/tetherto/pear-apps-lib-ui-react-hooks.git",
"@tetherto/pear-apps-utils-avatar-initials": "git+https://github.com/tetherto/pear-apps-utils-avatar-initials.git",
"@tetherto/pear-apps-utils-date": "git+https://github.com/tetherto/pear-apps-utils-date.git",
"@tetherto/pear-apps-utils-generate-unique-id": "git+https://github.com/tetherto/pear-apps-utils-generate-unique-id.git",
"@tetherto/pear-apps-utils-pattern-search": "git+https://github.com/tetherto/pear-apps-utils-pattern-search.git",
"@tetherto/pear-apps-utils-qr": "git+https://github.com/tetherto/pear-apps-utils-qr.git",
"@tetherto/pear-apps-utils-validator": "git+https://github.com/tetherto/pear-apps-utils-validator.git",
"@tetherto/pearpass-lib-constants": "git+https://github.com/tetherto/pearpass-lib-constants.git",
"@tetherto/pearpass-lib-ui-kit": "git+https://github.com/tetherto/pearpass-lib-ui-react-native-components.git#design-system-v2",
"@tetherto/pearpass-lib-vault": "git+https://github.com/tetherto/pearpass-lib-vault.git",
"@tetherto/pearpass-utils-password-check": "git+https://github.com/tetherto/pearpass-utils-password-check.git",
"@tetherto/pearpass-utils-password-generator": "git+https://github.com/tetherto/pearpass-utils-password-generator.git",
"events": "3.3.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-redux": "9.2.0",
"styled-components": "6.1.19",
"tailwind-merge": "3.3.0",
"tailwindcss": "4.1.4"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.28.5",
"@lingui/babel-plugin-lingui-macro": "5.1.2",
"@lingui/cli": "5.1.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.2",
"@tetherto/tether-dev-docs": "github:tetherto/tether-dev-docs",
"@types/chrome": "0.1.36",
"@types/jest": "30.0.0",
"@types/node": "25.9.1",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.27",
"babel-jest": "29.7.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"knip": "6.14.1",
"npm-run-all": "4.1.5",
"pear-interface": "1.0.0",
"postcss": "8.5.8",
"prettier-plugin-tailwindcss": "0.6.11",
"typescript": "5.9.3",
"vite": "6.3.1",
"vite-plugin-babel": "1.5.1"
},
"overrides": {
"react-native-windows": {
"react": "$react"
},
"react-native": {
".": "0.79.5",
"@types/react": "18.3.0"
}
}
}