-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.24 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"$schema": "https://json.schemastore.org/package",
"name": "@2hoch1/pixel-icon-library-react",
"version": "1.2.0",
"description": "React wrapper components for the HackerNoon Pixel Icon Library.",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./icon-types": {
"types": "./dist/icon-types.d.ts",
"import": "./dist/icon-types.js",
"require": "./dist/icon-types.cjs"
},
"./dynamicIconImports": {
"types": "./dist/dynamicIconImports.d.ts",
"import": "./dist/dynamicIconImports.js",
"require": "./dist/dynamicIconImports.cjs"
},
"./icons": {
"types": "./dist/icons/index.d.ts",
"import": "./dist/icons/index.js",
"require": "./dist/icons/index.cjs"
},
"./icons/*": {
"types": "./dist/icons/*.d.ts",
"import": "./dist/icons/*.js",
"require": "./dist/icons/*.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"generate": "tsx scripts/generate-icons.ts",
"build": "npm run generate && tsup",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"*.{json,md,yml,yaml}\" \".github/**/*.{yml,yaml,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"*.{json,md,yml,yaml}\" \".github/**/*.{yml,yaml,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0 <20.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@commitlint/types": "^20.4.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.0",
"esbuild": "^0.25.2",
"esbuild-plugin-svgr": "^3.1.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^20.1.0",
"husky": "^9.0.0",
"jsdom": "^27.4.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.16"
},
"dependencies": {
"@hackernoon/pixel-icon-library": "^1.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2hoch1/pixel-icon-library-react.git"
},
"homepage": "https://github.com/2hoch1/pixel-icon-library-react",
"bugs": {
"url": "https://github.com/2hoch1/pixel-icon-library-react/issues"
}
}