-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "pixelfit",
"version": "2.0.0",
"description": "A lightweight and flexible screen adaptation library for mobile and large-screen devices.",
"main": "dist/pixelfit.cjs.js",
"module": "dist/pixelfit.esm.js",
"browser": "dist/pixelfit.min.js",
"type": "module",
"exports": {
"import": "./dist/pixelfit.esm.js",
"require": "./dist/pixelfit.cjs.js"
},
"files": [
"dist/",
"README.md"
],
"keywords": [
"screen adaptation",
"responsive design",
"mobile adaptation",
"large screen adaptation",
"rem",
"px to rem"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"No tests yet\" && exit 0"
},
"author": "AndrewZ01",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup": "^2.79.2",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@rollup/plugin-html": "^1.0.4"
}
}