-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.35 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
{
"name": "fitview",
"version": "1.0.1",
"description": "视口自适应 JS 插件,支持 fill / contain / scroll / hidden 多种适配模式",
"main": "./lib/fitview.es.js",
"browser": "./lib/fitview.umd.js",
"unpkg": "./lib/fitview.umd.js",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/fitview.es.js",
"require": "./lib/fitview.umd.js"
}
},
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && rollup -c",
"dev": "cross-env NODE_ENV=dev rollup -c -w"
},
"bugs": {
"url": "https://github.com/pbstar/fitview/issues"
},
"files": [
"lib",
"README.md"
],
"contributors": [
{
"name": "彭勃",
"email": "pbstar@sina.cn"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/pbstar/fitview.git"
},
"homepage": "https://github.com/pbstar/fitview",
"keywords": [
"fitview",
"viewport",
"adaptive",
"scale",
"responsive",
"large-screen",
"datav"
],
"author": "pengbo <pbstar@sina.cn>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"cross-env": "^7.0.3",
"rollup": "^4.17.2",
"rollup-plugin-serve": "^1.1.1",
"tslib": "^2.6.3",
"typescript": "^5.9.3"
}
}