-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.06 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.06 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
{
"name": "react-native-feather",
"version": "2.0.0",
"description": "Feather icons for React Native — tree-shakable, typed, ref-forwarding components",
"license": "MIT",
"author": "Yiğithan Yücedağ <yigithanyucedag@gmail.com>",
"homepage": "https://github.com/yigithanyucedag/react-native-feather#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yigithanyucedag/react-native-feather.git"
},
"bugs": {
"url": "https://github.com/yigithanyucedag/react-native-feather/issues"
},
"keywords": [
"icon",
"icons",
"feather",
"feather-icons",
"react",
"react-native",
"react-native-svg",
"expo",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"react-native": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./icons/*": {
"types": "./dist/icons/*.d.ts",
"import": "./dist/icons/*.js",
"require": "./dist/icons/*.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build:icons": "node scripts/build-icons.mjs",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build:icons && npm run build",
"release": "npm publish --access public --provenance"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": "*",
"react-native-svg": ">=12"
},
"devDependencies": {
"@types/react": "19.2.14",
"eslint": "10.3.0",
"feather-icons": "4.29.2",
"react": "19.2.5",
"react-native-svg": "15.15.4",
"rimraf": "6.1.3",
"tsup": "8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.59.1",
"vitest": "4.1.5"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}