-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.64 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.64 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
{
"name": "chat2note",
"description": "Browser extension for exporting AI chat conversations to Markdown, JSON, TXT, and note tools",
"private": false,
"license": "AGPL-3.0-or-later",
"version": "0.1.0",
"homepage": "https://chat2note.com",
"repository": {
"type": "git",
"url": "https://github.com/shiquda/chat2note.git"
},
"bugs": {
"url": "https://github.com/shiquda/chat2note/issues"
},
"type": "module",
"scripts": {
"dev": "wxt",
"dev:persist": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:firefox:persist": "wxt -b firefox --mode development",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"i18n:check": "tsx scripts/check-i18n.ts",
"i18n:translate": "tsx scripts/translate-i18n.ts",
"extract-icons": "node scripts/extract-svg-files.js",
"postinstall": "wxt prepare",
"prepare": "husky"
},
"dependencies": {
"@tabler/icons-react": "^3.35.0",
"@tryfabric/martian": "^1.2.4",
"crypto-js": "^4.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@tabler/icons": "^3.35.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.12",
"@types/cli-progress": "^3.11.6",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.10.5",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitest/coverage-v8": "^3.2.4",
"@wxt-dev/module-react": "^1.1.3",
"cli-progress": "^3.12.0",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"happy-dom": "^19.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"wxt": "^0.20.6"
}
}