-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "dl-iconfont",
"version": "0.4.2",
"type": "module",
"description": "An iconfont downloader via puppeteer.",
"repository": "https://github.com/un-ts/dl-iconfont.git",
"author": "Zhenggang Su (https://github.com/Edisonsu768) <[email protected]>",
"contributors": [
"JounQin (https://www.1stG.me) <[email protected]>"
],
"funding": "https://opencollective.com/unts",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"bin": {
"dli": "./lib/cli.js",
"dl-iconfont": "./lib/cli.js",
"iconfont-dl": "./lib/cli.js"
},
"main": "lib/index.cjs",
"module": "lib",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "lib",
"files": [
"lib"
],
"keywords": [
"download-iconfont",
"dl-iconfont",
"iconfont",
"iconfont-dl",
"iconfont-downloader"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:tsc": "tsc -b",
"dev": "tsx ./src/cli",
"lint": "run-p lint:*",
"lint:es": "eslint . -f friendly",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"typecov": "type-coverage"
},
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"puppeteer": "^21.6.1",
"tslib": "^2.6.2",
"x-fetch": "^0.1.3"
},
"devDependencies": {
"@1stg/lib-config": "^12.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/web": "^0.0.127",
"size-limit": "^11.0.1",
"size-limit-preset-node-lib": "^0.3.0",
"tsx": "^4.6.2",
"type-coverage": "^2.27.0",
"typescript": "^5.3.3",
"yarn-deduplicate": "^6.0.2"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "lib/cli.js",
"limit": "750B"
}
],
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}