-
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) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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": "@jirkasa/code-box",
"version": "1.6.1",
"description": "Showcase code samples on the web with a container that lets users select and display different samples.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.prod.js --mode production",
"dev": "webpack serve --config webpack.dev.js --mode development --open",
"test": "vitest --environment happy-dom",
"coverage": "vitest run --environment happy-dom --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jirkasa/code-box.git"
},
"keywords": [
"code-box",
"code-samples",
"code-showcase"
],
"author": "Jiří Satora",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jirkasa/code-box/issues"
},
"homepage": "https://jirkasa.github.io/code-box",
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"ejs": "^3.1.10",
"happy-dom": "^15.7.3",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.15",
"style-loader": "^4.0.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"template-ejs-loader": "^0.9.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"vitest": "^2.0.5",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0",
"webpack-remove-empty-scripts": "^1.0.4"
}
}