-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "glyph-segregator",
"version": "0.6.6",
"description": "A new way to optimize web fonts for a specific site.",
"repository": "https://github.com/ouuan/glyph-segregator",
"author": "Yufan You",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "eslint . --ext .js,.ts",
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"release": "bumpp package.json --no-commit --no-push --no-tag && git commit -av && git push && pnpm build && pnpm publish"
},
"dependencies": {
"consola": "^3.3.0",
"jsdom": "^25.0.1",
"puppeteer": "^23.11.1",
"puppeteer-cluster": "^0.24.0",
"subset-font": "^2.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@ouuan/eslint-config-ts": "1.3.0",
"@ouuan/tsconfig-base": "1.3.0",
"@types/jsdom": "21.1.7",
"@types/node": "22.10.2",
"@types/subset-font": "2.3.0",
"bumpp": "9.9.2",
"csstype": "3.1.3",
"eslint": "8.57.1",
"tsup": "8.3.5",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}