-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "vanilla-icon-picker",
"version": "1.3.1",
"description": "Icon picker - Vanilla JS icon picker",
"keywords": [
"ux",
"vanilla",
"Fontawesome",
"icon",
"icon-picker"
],
"main": "./dist/icon-picker.min.js",
"typings": "./types/IconPicker.d.ts",
"author": "Simon <[email protected]>",
"license": "MIT",
"scripts": {
"develop": "webpack serve --progress --mode=development --config=config/webpack.dev.js",
"build": "node ./config/webpack.prod.js"
},
"homepage": "https://github.com/AppoloDev/vanilla-icon-picker#readme",
"repository": {
"type": "git",
"url": "https://github.com/AppoloDev/vanilla-icon-picker.git"
},
"bugs": {
"url": "https://github.com/AppoloDev/vanilla-icon-picker/issues"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.0",
"sass": "^1.49.10",
"sass-loader": "^12.6.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-fix-style-only-entries": "^0.6.1",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {}
}