-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
68 lines (68 loc) · 3.49 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
{
"name": "mouse-dictionary",
"version": "1.6.8",
"repository": "https://github.com/wtetsu/mouse-dictionary.git",
"author": "wtetsu",
"license": "MIT",
"scripts": {
"res": "node tools/bundle_json.js && node tools/make_dict.js",
"build": "npm run build-chrome",
"watch": "npm run watch-chrome",
"release": "npm run release-chrome",
"package": "npm run package-chrome",
"lint": "eslint src/**/*.{js,ts,tsx} && prettier --check src/**/*.{js,ts,tsx} && tsc --noEmit",
"format": "prettier --write src/**/*.{js,ts,tsx}",
"test": "jest --silent",
"test-watch": "jest --watch --silent",
"test-cov": "npm test -- --coverage --silent",
"test-cov-watch": "npm test -- --coverage --watch --silent",
"build-chrome": "node tools/make_manifest.js chrome development && node tools/build.js chrome development",
"watch-chrome": "node tools/make_manifest.js chrome development && node tools/build.js chrome development watch",
"release-chrome": "node tools/make_manifest.js chrome production && npm run res && node tools/build.js chrome production",
"package-chrome": "npm run release-chrome && node tools/archive.js chrome",
"build-vivaldi": "node tools/make_manifest.js chrome development activate_extension && node tools/build.js chrome development",
"watch-vivaldi": "node tools/make_manifest.js chrome development activate_extension && node tools/build.js chrome development watch",
"release-vivaldi": "node tools/make_manifest.js chrome production activate_extension && npm run res && node tools/build.js chrome production",
"package-vivaldi": "npm run release-vivaldi && node tools/archive.js chrome",
"build-firefox": "node tools/make_manifest.js firefox development && node tools/build.js firefox development",
"watch-firefox": "node tools/make_manifest.js firefox development && node tools/build.js firefox development watch",
"release-firefox": "node tools/make_manifest.js firefox production && npm run res && node tools/build.js firefox production",
"package-firefox": "npm run release-firefox && node tools/archive.js firefox",
"build-safari": "node tools/make_manifest.js safari development && node tools/build.js safari development",
"watch-safari": "node tools/make_manifest.js safari development && node tools/build.js safari development watch",
"release-safari": "node tools/make_manifest.js safari production && npm run res && node tools/build.js safari production && yes | xcrun safari-web-extension-converter --force --no-open dist-safari --project-location dist-safari",
"package-safari": "npm run release-safari && node tools/archive.js safari"
},
"dependencies": {
"deinja": "0.0.3",
"immer": "^10.1.1",
"mustache": "^4.2.0",
"react": "^18.3.1",
"react-ace": "^13.0.0",
"react-dom": "^18.3.1",
"sweetalert": "^2.1.2",
"uniqlist": "^1.0.4"
},
"devDependencies": {
"@swc/core": "^1.9.1",
"@swc/jest": "^0.2.37",
"@types/chrome": "^0.0.280",
"@types/jest": "^29.5.14",
"@types/mustache": "^4.2.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"archiver": "^7.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"milligram": "^1.4.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}