-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "@phosphor-icons/core",
"version": "2.1.1",
"description": "Icon catalog and assets for Phosphor",
"license": "MIT",
"repository": "https://github.com/phosphor-icons/phosphor-core.git",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./assets/bold/*.svg": "./assets/bold/*.svg",
"./assets/duotone/*.svg": "./assets/duotone/*.svg",
"./assets/fill/*.svg": "./assets/fill/*.svg",
"./assets/light/*.svg": "./assets/light/*.svg",
"./assets/regular/*.svg": "./assets/regular/*.svg",
"./assets/thin/*.svg": "./assets/thin/*.svg",
"./bold/*.svg": "./assets/bold/*.svg",
"./duotone/*.svg": "./assets/duotone/*.svg",
"./fill/*.svg": "./assets/fill/*.svg",
"./light/*.svg": "./assets/light/*.svg",
"./regular/*.svg": "./assets/regular/*.svg",
"./thin/*.svg": "./assets/thin/*.svg"
},
"author": {
"name": "Tobias Fried",
"email": "friedtm@gmail.com",
"url": "https://tobiasfried.com"
},
"keywords": [
"phosphor",
"icons",
"svg",
"design",
"interface",
"UI",
"UX"
],
"files": [
"./dist",
"./assets"
],
"scripts": {
"collate": "tsx ./scripts/collate.ts",
"catalog": "tsx ./scripts/catalog.ts && pnpm format",
"format": "prettier --write ./src/** ./scripts/**",
"build": "vite build && tsc --emitDeclarationOnly"
},
"devDependencies": {
"@types/node": "^18",
"chalk": "^4",
"commander": "^9.5.0",
"prettier": "^2.8.3",
"svgson": "^5.3.1",
"tsx": "^4.7.0",
"typescript": "^4.9.4",
"vite": "^5.2.11"
}
}