-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "js-pretty-icons",
"version": "0.2.1",
"description": "JS Pretty Icons is a component library with a lot of beautiful and customizable icons, all of them from SVGRepo website.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"rollup": "rollup -c --bundleConfigAsCjs",
"build:watch": "rollup -c --bundleConfigAsCjs --watch",
"watch": "rollup -c --bundleConfigAsCjs --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx --max-warnings=0",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:JooLuiz/js-pretty-icons.git"
},
"bugs": {
"url": "https://github.com/JooLuiz/js-pretty-icons/issues"
},
"homepage": "https://jooluiz.github.io/js-pretty-icons/",
"author": "João Luiz de Castro (https://github.com/JooLuiz)",
"keywords": [
"Icons",
"Typescript",
"React"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"react": "^19.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^8.0.1",
"vitest": "^4.1.0"
},
"peerDependencies": {
"react": ">=17"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint --max-warnings=0"
},
"dependencies": {
"rollup": "^4.34.6"
}
}