-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.84 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.84 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
{
"name": "mouse-dictionary-iframe-support",
"version": "1.1.2",
"repository": "https://github.com/wtetsu/mouse-dictionary-iframe.git",
"author": "wtetsu",
"license": "MIT",
"scripts": {
"build": "npm run build-kaggle && npm run build-iframe && npm run build-enhancer",
"release": "npm run release-kaggle && npm run release-iframe && npm run release-enhancer",
"package": "npm run package-kaggle && npm run package-iframe && npm run package-enhancer",
"build-kaggle": "webpack --env edition=kaggle",
"watch-kaggle": "webpack -w --env edition=kaggle",
"release-kaggle": "webpack --env edition=kaggle --node-env=production",
"package-kaggle": "npm run release-kaggle && node build_tools/archive.js kaggle",
"build-iframe": "webpack --env edition=iframe",
"watch-iframe": "webpack -w --env edition=iframe",
"release-iframe": "webpack --env edition=iframe --node-env=production",
"package-iframe": "npm run release-iframe && node build_tools/archive.js iframe",
"build-enhancer": "webpack --env edition=enhancer",
"watch-enhancer": "webpack -w --env edition=enhancer",
"release-enhancer": "webpack --env edition=enhancer --node-env=production",
"package-enhancer": "npm run release-enhancer && node build_tools/archive.js enhancer",
"lint": "biome check ./src",
"format": "biome format --write ./src",
"test": "vitest run",
"test-watch": "vitest watch",
"test-cov": "vitest run --coverage",
"test-cov-watch": "vitest watch --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/chrome": "^0.0.303",
"@vitest/coverage-v8": "^3.0.5",
"adm-zip": "^0.5.16",
"copy-webpack-plugin": "^12.0.2",
"jsdom": "^26.0.0",
"milligram": "^1.4.1",
"ts-loader": "^9.5.2",
"vitest": "^3.0.5",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}