-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.28 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
69
70
71
72
73
74
75
76
77
{
"name": "abtasty-debugger",
"version": "1.4.0",
"private": true,
"description": "Browser extension that simplifies the debugging of A/B tests from AB Tasty and adds useful informations",
"homepage": "https://github.com/yoriiis/abtasty-debugger",
"bugs": "https://github.com/yoriiis/abtasty-debugger/issues",
"repository": "https://github.com/yoriiis/abtasty-debugger.git",
"license": "MIT",
"author": "Yoriiis",
"scripts": {
"biome:check": "biome check",
"biome:fix": "biome check --write",
"build:v2": "rm -rf ./web/ && webpack --mode=production --config=config/webpack.config.js --env manifest=v2",
"build:v3": "rm -rf ./web/ && webpack --mode=production --config=config/webpack.config.js --env manifest=v3",
"dev": "tsc --watch",
"dev:unit": "jest --config config/jest.config.js --watchAll --coverage",
"dev:v2": "rm -rf ./web/ && webpack serve --mode=development --config=config/webpack.config.js --env manifest=v2",
"dev:v3": "rm -rf ./web/ && webpack serve --mode=development --config=config/webpack.config.js --env manifest=v3",
"inspect": "node --inspect node_modules/webpack/bin/webpack.js --config webpack.config.js --mode=development",
"pre:publish": "npm run release:v3 && npm run release:v2 && npm run test:ext && npm run test && npm run biome:check",
"release:v2": "rm -rf ./web/ && webpack --mode=production --config=config/webpack.config.js --env manifest=v2 --env release=true",
"release:v3": "rm -rf ./web/ && webpack --mode=production --config=config/webpack.config.js --env manifest=v3 --env release=true",
"test": "npm run test:unit",
"test:ext": "web-ext lint --source-dir web",
"test:unit": "jest --config config/jest.config.js --verbose --coverage",
"watch:v2": "rm -rf ./web/ && webpack --watch --mode=development --config=config/webpack.config.js --env manifest=v2",
"watch:v3": "rm -rf ./web/ && webpack --watch --mode=development --config=config/webpack.config.js --env manifest=v3"
},
"dependencies": {
"costro": "^2.2.0",
"validate-target": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "^1.9.4",
"@types/chrome": "^0.0.235",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"babel-loader": "^9.2.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"chrome-webstore-upload-cli": "^3.3.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jsx-dom-cjs": "^8.1.5",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-custom-media": "^11.0.5",
"postcss-custom-properties-transformer": "^1.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.1",
"postcss-url": "^10.1.3",
"terser-webpack-plugin": "^5.3.8",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"web-ext": "^8.3.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"engines": {
"node": ">=20.18.0"
}
}