-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "@phosphor-icons/webcomponents",
"version": "2.1.5",
"description": "A flexible icon family for the web",
"author": "rektdeckard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phosphor-icons/webcomponents.git"
},
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"module": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./*": {
"import": "./dist/icons/*.mjs",
"types": "./dist/icons/*.d.ts"
},
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"files": [
"dist/"
],
"private": false,
"sideEffects": true,
"scripts": {
"assemble": "tsx scripts/assemble.ts",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,vue}\" \"./scripts/*.ts\" \"./index.html\"",
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly"
},
"dependencies": {
"lit": "^3"
},
"devDependencies": {
"@types/node": "^18",
"chalk": "^4",
"prettier": "^3",
"tsx": "^4",
"typescript": "^5",
"vite": "^5.2"
}
}