-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "@justrelate/icon-picker",
"version": "1.0.3",
"description": "A versatile icon picker for Scrivito and React applications with Bootstrap Icons support",
"keywords": [
"icon-picker",
"scrivito",
"react",
"bootstrap-icons",
"icon-editor"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./*.css": "./dist/*.css"
},
"license": "MIT",
"module": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"repository": "github:JustRelate/icon-picker",
"bugs": "https://github.com/JustRelate/icon-picker/issues",
"homepage": "https://github.com/JustRelate/icon-picker#readme",
"scripts": {
"audit-signatures": "npm audit signatures",
"build": "rm -rf dist && tsc && cp src/*.css dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepublishOnly": "npm run build && npm run lint && npm run prettier",
"prettier": "prettier --check ."
},
"peerDependencies": {
"bootstrap-icons": "*",
"react": "*",
"scrivito": "*"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}