-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.53 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "material-symbols-cli",
"version": "0.1.0",
"description": "CLI tool to fetch Google Material Symbols and generate tree-shakable icon components for React, React Native, MUI, Vue, Angular, Svelte, Solid, Preact, Qwik, Lit, Web Components, Flutter, and raw SVG",
"author": "yermartee (https://github.com/yermartee)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/yermartee/material-symbols-cli.git"
},
"homepage": "https://github.com/yermartee/material-symbols-cli#readme",
"bugs": {
"url": "https://github.com/yermartee/material-symbols-cli/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/yermartee"
},
"keywords": [
"material-symbols",
"material-design",
"material-3",
"icons",
"icon-generator",
"code-generation",
"cli",
"svg",
"tree-shakable",
"google-fonts",
"mui",
"react",
"react-native",
"vue",
"angular",
"svelte",
"solid",
"solidjs",
"preact",
"qwik",
"lit",
"web-components",
"flutter"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"msym": "dist/cli.js",
"material-symbols": "dist/cli.js"
},
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./config": {
"types": {
"import": "./dist/config.d.ts",
"require": "./dist/config.d.cts"
},
"import": "./dist/config.js",
"require": "./dist/config.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "biome lint --files-ignore-unknown=true .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"commander": "^13.1.0",
"ora": "^8.2.0",
"picocolors": "^1.1.1",
"svgo": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^22.0.0",
"tsup": "^8.4.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}