-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.92 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
{
"name": "react-ios-icons",
"description": "🐢 A React Component Library of iOS icons with high-level props & types",
"version": "1.1.1",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"generate:icon": "plop",
"scripts:uic": "bun run scripts/UIC.ts",
"scripts:audit": "bun run scripts/audit.ts",
"scripts:sync": "ncp example docs --filter=\"node_modules\" --stopOnErr",
"lint:typescript": "tsc --noemit",
"lint:check": "ultracite check",
"lint:fix": "ultracite fix --unsafe"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.4",
"@semantic-release/npm": "10.0.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"chalk": "^5.4.1",
"clsx": "2.0.0",
"handlebars-helpers": "0.10.0",
"ncp": "^2.0.0",
"plop": "3.1.2",
"semantic-release": "^21.0.9",
"terser": "5.19.2",
"tsup": "7.2.0",
"typescript": "^5.1.6",
"ultracite": "7.0.12"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/walidkorchi/react-ios-icons"
},
"homepage": "https://react-ios-icons.com/",
"author": {
"name": "Walidoux",
"url": "https://walidkorchi.com/"
},
"keywords": [
"react",
"icons",
"sf-symbols",
"apple",
"ios",
"typescript",
"jsx",
"tsx"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"tag": "latest"
},
"release": {
"plugins": [
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"branches": [
"release"
]
}
}