-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@xrnoz/bootstrap-icons-js",
"version": "1.1.0",
"description": "Re-packaging of Bootstrap Icons",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/**"
],
"dependencies": {},
"devDependencies": {
"@tsconfig/node20": "20.1.2",
"@tsconfig/strictest": "2.0.2",
"@types/lodash": "4.14.202",
"@types/node": "20.10.5",
"bootstrap-icons": "1.11.2",
"del-cli": "5.1.0",
"glob": "10.3.10",
"htmlparser2": "9.0.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"tsx": "4.6.2",
"typescript": "5.3.3"
},
"scripts": {
"build": "run-s -l build:*",
"build:clean": "del-cli dist && del-cli icons.ts",
"build:generate": "tsx build.ts",
"build:compile": "tsc --project tsconfig.build.json",
"fmt": "prettier --write .",
"prepublishOnly": "yarn build"
},
"keywords": [
"bootstrap icons"
],
"repository": {
"type": "git",
"url": "https://github.com/Yzen90/bootstrap-icons-js.git"
},
"author": "Edgar Montiel Cruz <[email protected]>",
"license": "MIT",
"private": false
}