-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.23 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
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
{
"name": "@tofrankie/fontminify",
"type": "module",
"version": "0.0.4",
"packageManager": "pnpm@10.32.0",
"description": "Subset and minify fonts",
"author": "Frankie <1426203851@qq.com>",
"license": "MIT",
"homepage": "https://github.com/tofrankie/fontminify",
"repository": {
"type": "git",
"url": "git+https://github.com/tofrankie/fontminify.git"
},
"bugs": "https://github.com/tofrankie/fontminify/issues",
"keywords": [
"font",
"fontmin",
"fontminify",
"subset",
"glyph",
"chinese"
],
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"fontminify": "./dist/cli.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README*",
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint": "run-s lint:eslint lint:prettier tsc",
"lint:eslint": "eslint . --cache --fix",
"lint:prettier": "prettier . --cache --write --log-level silent",
"publint": "publint",
"tsc": "tsc -b --noEmit",
"tsc:test": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm lint && pnpm test && pnpm build",
"prepare": "husky",
"github:release": "tfr"
},
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"commander": "^14.0.3",
"fontmin": "^1.1.1",
"jiti": "^2.6.1",
"tinyglobby": "^0.2.16"
},
"devDependencies": {
"@tofrankie/action": "^0.0.7",
"@tofrankie/eslint": "^0.2.1",
"@tofrankie/prettier": "^0.2.0",
"@tofrankie/tsconfig": "^0.0.5",
"@types/fontmin": "^0.9.5",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "4.1.4",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}