-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "astro-svg-loaders",
"description": "Astro loading icons and small animations built with pure SVG.",
"version": "5.0.0",
"homepage": "https://github.com/codiume/orbit",
"bugs": "https://github.com/codiume/orbit/issues",
"author": "codiume",
"license": "MIT",
"keywords": [
"astro",
"astro-component",
"astro-svg-loaders",
"ui",
"css",
"loaders",
"svg-loaders"
],
"repository": {
"type": "git",
"url": "https://github.com/codiume/orbit.git",
"directory": "packages/astro-svg-loaders"
},
"scripts": {
"build": "tsup",
"check-types": "tsc --declaration --emitDeclarationOnly",
"check-exports": "attw --pack . --profile esm-only --ignore-rules internal-resolution-error",
"typecheck": "pnpm check-types && pnpm check-exports"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"peerDependencies": {
"astro": "^5.0.0"
}
}