-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.29 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.29 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
61
62
{
"name": "floatly",
"version": "3.0.0",
"description": "Floatly is an awesome floating button that brings quick browser actions from any website.",
"scripts": {
"purge": "node config/purgecss.js",
"dev-website": "webpack serve --config config/webpack.dev.website.js",
"dev": "npm run build-fab && cross-env TYPE=chrome MV=2 webpack --config config/webpack.dev.js",
"dev:mv3": "npm run build-fab && cross-env TYPE=chrome MV=3 webpack --config config/webpack.dev.js",
"dev:firefox": "cross-env TYPE=firefox MV=3 webpack --config config/webpack.dev.js",
"build-website": "cross-env webpack --config config/webpack.prod.website.js",
"build-fab": "sass src/sass/fab:src/css/fab --style=compressed",
"build": "cross-env TYPE=chrome MV=2 webpack --config config/webpack.prod.js",
"build:v3": "cross-env TYPE=chrome MV=3 webpack --config config/webpack.prod.js",
"build:firefox": "cross-env TYPE=chrome MV=3 webpack --config config/webpack.prod.js",
"build:firefox:v3": "cross-env TYPE=firefox MV=3 webpack --config config/webpack.prod.js",
"lint": "eslint 'src/**/*.{js,ts}' && echo 'Linting complete!'",
"lint-fix": "eslint 'src/**/*.{js,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3ward/floalty.git"
},
"author": "Eduard Ursu",
"license": "(CC BY-NC-SA 4.0)",
"bugs": {
"url": "https://github.com/d3ward/floatly/issues"
},
"homepage": "https://github.com/d3ward/floatly#readme",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"autoprefixer": "^10.4.27",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"eslint": "^10.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.1",
"postcss-loader": "^8.2.1",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"a11y-dialog": "^8.1.5",
"html-loader": "^5.1.0",
"purgecss": "^8.0.0",
"sortablejs": "^1.15.7",
"template-ejs-loader": "^0.9.4",
"vanilla-picker": "^2.12.3"
}
}