-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 917 Bytes
/
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
{
"name": "scrivito-icon-editor",
"version": "0.0.2",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*.css": "./dist/*.css"
},
"license": "MIT",
"module": "./dist/index.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"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"
}
}