-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.11 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.11 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
{
"name": "aws-management-console-colorize",
"description": "Chrome and Firefox extensions to change and add colors in the AWS management console.",
"private": true,
"version": "0.3.9",
"author": "Masaya Suzuki",
"license": "MIT",
"type": "module",
"scripts": {
"dev:chrome": "wxt",
"dev:firefox": "wxt --mode development -b firefox",
"build:chrome": "bun run compile && wxt build",
"build:chrome:dev": "bun run compile && wxt build --mode development",
"build:firefox": "bun run compile && wxt build -b firefox",
"zip:chrome": "bun run compile && wxt zip",
"zip:chrome:dev": "bun run compile && wxt zip --mode development",
"zip:firefox": "bun run compile && wxt zip -b firefox",
"compile": "tsc --noEmit",
"e2e": "bun run build:chrome:dev && playwright test",
"postinstall": "wxt prepare"
},
"engines": {
"node": "24.14.0"
},
"dependencies": {
"react": "^19.0.0",
"react-color-palette": "^7.3.0",
"react-dom": "^19.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@proofdict/textlint-rule-proofdict": "3.1.2",
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "2.0.1",
"@types/chrome": "0.1.38",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@wxt-dev/module-react": "1.2.2",
"@wxt-dev/storage": "1.2.8",
"globals": "17.4.0",
"prettier": "3.8.1",
"textlint": "15.5.2",
"textlint-filter-rule-comments": "1.3.0",
"textlint-rule-abbr-within-parentheses": "1.0.2",
"textlint-rule-footnote-order": "1.0.3",
"textlint-rule-ja-hiragana-fukushi": "1.3.0",
"textlint-rule-ja-hiragana-hojodoushi": "1.1.0",
"textlint-rule-ja-hiragana-keishikimeishi": "1.1.0",
"textlint-rule-no-dead-link": "6.2.1",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "1.0.1",
"textlint-rule-prefer-tari-tari": "1.0.3",
"textlint-rule-preset-ja-spacing": "2.4.3",
"textlint-rule-preset-ja-technical-writing": "12.0.2",
"textlint-rule-terminology": "5.2.16",
"tsx": "4.21.0",
"typescript": "5.9.3",
"wxt": "0.20.20"
}
}