-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.05 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
{
"name": "1x1",
"version": "4.0.0",
"description": "One pixel transparent PNG base64 encoded online generator.",
"main": "src/index.html",
"type": "module",
"packageManager": "^[email protected]",
"scripts": {
"start": "NODE_NO_WARNINGS=1 webpack serve --env NODE_ENV=development",
"build": "NODE_NO_WARNINGS=1 webpack build --env NODE_ENV=production",
"lint": "eslint 'src/**/*.{ts,tsx}' && stylelint src/**/*.css",
"serve": "python3 -m http.server -d dist"
},
"dependencies": {
"jsx-dom-runtime": "^0.72.0",
"rgb-hex": "^4.1.0",
"storeon-velo": "^5.0.0-rc.5",
"tinykeys": "^3.0.0",
"vanilla-colorful": "^0.7.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.18.0",
"@evilmartians/lefthook": "^1.10.3",
"@types/css-modules": "^1.0.5",
"@types/wicg-file-system-access": "^2023.10.5",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-plugin-transform-remove-polyfill": "^0.24.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"css-mqpacker-webpack-plugin": "^0.16.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-webpack-plugin": "^5.6.3",
"mini-css-class-name": "^0.15.1",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shoonia/1x1"
},
"bugs": {
"url": "https://github.com/shoonia/1x1/issues"
},
"homepage": "https://shoonia.github.io/1x1/",
"author": {
"name": "Alexander Zaytsev",
"email": "[email protected]",
"url": "https://x.com/_shoonia"
},
"license": "MIT"
}