-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1000 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1000 Bytes
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": "screen-main",
"version": "1.0.5",
"description": "screen zoom",
"private": false,
"author": "zhouliwen<zlw@ciqtek.com>",
"homepage": "",
"license": "ISC",
"main": "lib/index.cjs",
"types": "index.d.ts",
"directories": {
"lib": "lib",
"build": "rollup -c rollup.config.js"
},
"files": [
"lib",
"code",
"index.d.ts"
],
"keywords": [
"screen",
"zoom"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"build": "rollup -c rollup.config.js"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"rollup": "^2.70.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {}
}