-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "express-iconify",
"version": "0.0.6",
"description": "An express sub app for iconify, can also be used directly as a server",
"homepage": "https://github.com/noootwo/express-iconify",
"bugs": "https://github.com/noootwo/express-iconify/issues",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:noootwo/express-iconify.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"start": "node ./dist/cjs/app.js",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"clean": "rimraf dist",
"publish": "npm run build && bumpp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"iconify"
],
"author": "noootwo",
"license": "MIT",
"dependencies": {
"@iconify/json": "^2.2.262",
"@iconify/utils": "^2.1.33",
"express": "5.0.0",
"lru-cache": "^11.0.1"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/node": "^22.7.9",
"bumpp": "^9.8.1",
"rimraf": "^6.0.1"
}
}