-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.74 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
{
"name": "svgls",
"version": "0.0.13",
"description": "a beautiful library with svg logos.",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"license": "MIT",
"author": {
"name": "sujjeee",
"url": "https://twitter.com/sujjeeee"
},
"homepage": "https://svgl.app",
"bugs": {
"url": "https://github.com/sujjeee/svgls/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sujjeee/svgls.git"
},
"files": [
"dist"
],
"keywords": [
"svgs",
"logos",
"svgl",
"svgls",
"svgs collections",
"svgs library",
"sujjeee"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"reset": "rimraf dist && rimraf public",
"clean:public": "rimraf public",
"start": "node dist/index.js ",
"lint": "biome lint .",
"lint:fix": "biome lint --apply-unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"code-check": "biome check .",
"code-check:fix": "biome check --apply-unsafe .",
"biome:ci": "biome ci .",
"pub:release": "pnpm build && pnpm publish --access public"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2",
"ora": "^7.0.1",
"package-json": "^8.1.1",
"prompts": "^2.4.2",
"rimraf": "^5.0.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.1",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"type-fest": "^4.25.0",
"typescript": "^5.5.4"
}
}