-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.03 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
94
95
96
97
98
{
"name": "iconfont-spanner",
"version": "2.6.0",
"description": "iconfont 本地管理服务",
"type": "module",
"bin": {
"iconfont": "out/server/bin.mjs",
"icon": "out/server/bin.mjs"
},
"module": "./out/server/index.js",
"types": "./out/server/index.d.ts",
"exports": {
".": {
"types": "./out/server/index.d.ts",
"import": "./out/server/index.js"
}
},
"files": [
"out/",
"bin.js",
"package.json",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/amazecc/iconfont-spanner",
"repository": {
"type": "git",
"url": "git+https://github.com/amazecc/iconfont-spanner.git"
},
"keywords": [
"iconfont",
"iconfont-spanner",
"svg",
"svg icon",
"web icon",
"font icon"
],
"author": "",
"license": "MIT",
"scripts": {
"start-server": "tsx src/bin.mts start",
"start-client": "cd client && pnpm run start",
"build-server": "tsc",
"build-client": "cd client && pnpm run build",
"build-all": "rm -rf out && pnpm run build-server && pnpm run build-client",
"clear-client": "rm -rf out/static",
"clear-server": "rm -rf out/server",
"major": "npm version major",
"minor": "npm version minor",
"patch": "npm version patch",
"premajor": "npm version premajor --preid=beta",
"preminor": "npm version preminor --preid=beta",
"prepatch": "npm version prepatch --preid=beta",
"prerelease": "npm version prerelease --preid=beta",
"publish": "npm publish",
"publish-beta": "npm publish --tag beta"
},
"dependencies": {
"@koa/bodyparser": "^5.1.1",
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"dayjs": "^1.11.12",
"fs-extra": "^11.2.0",
"glob": "10.4.5",
"koa": "^2.15.3",
"koa-static": "^5.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"svgo": "^3.3.2",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/koa": "^2.15.0",
"@types/koa-static": "^4.0.4",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.11.30",
"@types/svg2ttf": "^5.0.3",
"@types/svgicons2svgfont": "^10.0.5",
"@types/ttf2woff": "^2.0.4",
"@types/ttf2woff2": "^2.0.2",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.6",
"tsx": "^4.16.2",
"typescript": "5.5.4"
}
}