-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "svg-chunk-webpack-plugin",
"version": "7.0.0",
"description": "Generate SVG sprites according to entrypoint dependencies. Each page only imports its own svgs, wrapped as a sprite and optimized by svgo",
"keywords": [
"svg",
"svg-sprite",
"svgo",
"svgstore",
"webpack",
"webpack-plugin",
"webpack-loader",
"chunk",
"optimization",
"minification",
"javascript"
],
"homepage": "https://github.com/yoriiis/svg-chunk-webpack-plugin",
"bugs": "https://github.com/yoriiis/svg-chunk-webpack-plugin/issues",
"repository": "https://github.com/yoriiis/svg-chunk-webpack-plugin.git",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/yoriiis"
},
"license": "MIT",
"author": "Yoriiis",
"type": "module",
"exports": "./lib/index.js",
"types": "./types/index.d.ts",
"files": ["lib", "types"],
"scripts": {
"biome:check": "biome check",
"biome:fix": "biome check --write",
"build": "rm -rf ./types ./lib && tsc",
"build:example": "rm -rf ./example/dist/ && webpack --config=./example/webpack.config.js --mode=production",
"dev": "tsc --watch",
"dev:unit": "jest --config ./config/jest.config.js --verbose --coverage --watch",
"inspect:example": "rm -rf ./example/dist/ && node --inspect node_modules/webpack/bin/webpack.js --config=./example/webpack.config.js --mode=development",
"pre:publish": "npm run build && npm run build:example && npm run test",
"start:example": "rm -rf ./example/dist/ && webpack --config=./example/webpack.config.js --mode=development",
"test": "npm run test:unit",
"test:unit": "jest --config ./config/jest.config.js --verbose --coverage"
},
"dependencies": {
"extend": "^3.0.2",
"schema-utils": "^4.2.0",
"svgo": "^3.3.2",
"svgstore": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/tapable": "^2.2.7",
"@types/webpack": "^5.28.5",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"webpack": ">= 5.80.0"
},
"engines": {
"node": ">=20.18.0"
}
}