-
-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 KB
/
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
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
{
"name": "@tabler/icons-react-native",
"version": "3.19.0",
"license": "MIT",
"author": "codecalm",
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
"homepage": "https://tabler-icons.io",
"bugs": {
"url": "https://github.com/tabler/tabler-icons/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/codecalm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabler/tabler-icons.git",
"directory": "packages/icons-react-native"
},
"type": "module",
"main": "./dist/cjs/tabler-icons-react-native.cjs",
"types": "./dist/cjs/tabler-icons-react-native.d.cts",
"module": "./dist/esm/tabler-icons-react-native.mjs",
"react-native": "./dist/esm/tabler-icons-react-native.mjs",
"exports": {
".": {
"require": {
"types": "./dist/cjs/tabler-icons-react-native.d.cts",
"default": "./dist/cjs/tabler-icons-react-native.cjs"
},
"import": {
"types": "./dist/esm/tabler-icons-react-native.d.ts",
"default": "./dist/esm/tabler-icons-react-native.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
"build:icons": "node build.mjs",
"build:bundles": "rollup -c ./rollup.config.mjs",
"copy:license": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
"typecheck": "tsc",
"imports-check": "attw $(npm pack)"
},
"dependencies": {
"@tabler/icons": "3.19.0"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/react": "18.2.60",
"@vitejs/plugin-react": "^4.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "^0.73.5",
"react-native-svg": "^15.0.0",
"react-test-renderer": "18.2.0"
},
"peerDependencies": {
"react": "^16.5.1 || ^17.0.0 || ^18.0.0"
}
}