-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
67
68
69
70
71
{
"name": "svgl-react",
"version": "1.1.4",
"description": "A React component library for popular SVG logos from svgl.app",
"keywords": [
"svgl",
"svg",
"svgs",
"react",
"brand",
"icons",
"logos"
],
"author": "Aryan Prince <[email protected]> (https://x.com/aryxnprince)",
"homepage": "https://svgl.app/",
"bugs": {
"url": "https://github.com/aryanprince/svgl-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryanprince/svgl-react.git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"dev": "bun src/index.ts",
"dev:convert-svg-to-react": "pnpm dlx @svgr/cli --typescript --out-dir src/components --filename-case kebab -- public",
"dev:generate-index-file": "tsx src/utils/generate-index.ts",
"clean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist",
"clean:dist": "rm -rf dist",
"ci": "pnpm run format:check && pnpm run lint && pnpm run build && pnpm run lint:attw",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "tsc",
"lint:attw": "attw --pack .",
"changesets:generate": "changeset",
"changesets:release": "changeset version && changeset publish",
"release": "pnpm run ci && pnpm run changesets:release",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.5.5",
"@types/react": "^18.3.8",
"prettier": "^3.3.3",
"react": "^18.3.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": "^18.3.1"
}
}