@tinloof/typed-svg-sprite 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,64 +1,72 @@
1
- {
2
- "name": "@tinloof/typed-svg-sprite",
3
- "version": "0.0.1",
4
- "description": "Generate optimized SVG sprites with full TypeScript support",
5
- "bin": {
6
- "typed-svg-sprite": "./dist/cli.js"
7
- },
8
- "exports": {
9
- "./next": {
10
- "types": "./dist/next.d.ts",
11
- "default": "./dist/next.js"
12
- }
13
- },
14
- "scripts": {
15
- "build": "tsc",
16
- "prepare": "npm run build",
17
- "clean": "rimraf dist",
18
- "changeset": "changeset",
19
- "version": "changeset version",
20
- "release": "npm run build && changeset publish"
21
- },
22
- "files": [
23
- "dist/",
24
- "README.md",
25
- "CHANGELOG.md"
26
- ],
27
- "keywords": [
28
- "svg",
29
- "sprite",
30
- "icon",
31
- "typescript",
32
- "nextjs",
33
- "cli"
34
- ],
35
- "author": "LHDi <elhadi98@gmail.com>",
36
- "license": "MIT",
37
- "repository": {
38
- "type": "git",
39
- "url": "https://github.com/tinloof/typed-svg-sprite.git"
40
- },
41
- "bugs": {
42
- "url": "https://github.com/tinloof/typed-svg-sprite/issues"
43
- },
44
- "homepage": "https://github.com/tinloof/typed-svg-sprite#readme",
45
- "engines": {
46
- "node": ">=14.0.0"
47
- },
48
- "dependencies": {
49
- "cheerio": "^1.1.2",
50
- "glob": "^10.3.10"
51
- },
52
- "peerDependenciesMeta": {
53
- "next": {
54
- "optional": true
55
- }
56
- },
57
- "devDependencies": {
58
- "@changesets/cli": "^2.29.7",
59
- "@types/cheerio": "^0.22.35",
60
- "@types/node": "^20.0.0",
61
- "rimraf": "^5.0.5",
62
- "typescript": "^5.0.0"
63
- }
64
- }
1
+ {
2
+ "name": "@tinloof/typed-svg-sprite",
3
+ "version": "0.1.0",
4
+ "description": "Generate optimized SVG sprites with full TypeScript support",
5
+ "bin": {
6
+ "typed-svg-sprite": "./dist/cli.js"
7
+ },
8
+ "exports": {
9
+ "./next": {
10
+ "types": "./dist/next.d.ts",
11
+ "default": "./dist/next.js"
12
+ },
13
+ "./astro": {
14
+ "types": "./dist/astro.d.ts",
15
+ "default": "./dist/astro.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist/",
20
+ "README.md",
21
+ "CHANGELOG.md"
22
+ ],
23
+ "keywords": [
24
+ "svg",
25
+ "sprite",
26
+ "icon",
27
+ "typescript",
28
+ "nextjs",
29
+ "astro",
30
+ "cli"
31
+ ],
32
+ "author": "LHDi <elhadi98@gmail.com>",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/tinloof/typed-svg-sprite.git"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/tinloof/typed-svg-sprite/issues"
40
+ },
41
+ "homepage": "https://github.com/tinloof/typed-svg-sprite#readme",
42
+ "engines": {
43
+ "node": ">=14.0.0"
44
+ },
45
+ "dependencies": {
46
+ "cheerio": "^1.1.2",
47
+ "glob": "^10.3.10"
48
+ },
49
+ "peerDependenciesMeta": {
50
+ "next": {
51
+ "optional": true
52
+ },
53
+ "astro": {
54
+ "optional": true
55
+ }
56
+ },
57
+ "devDependencies": {
58
+ "@changesets/cli": "^2.29.7",
59
+ "@types/cheerio": "^0.22.35",
60
+ "@types/node": "^20.0.0",
61
+ "astro": "^5.0.0",
62
+ "rimraf": "^5.0.5",
63
+ "typescript": "^5.0.0"
64
+ },
65
+ "scripts": {
66
+ "build": "tsc",
67
+ "clean": "rimraf dist",
68
+ "changeset": "changeset",
69
+ "version": "changeset version",
70
+ "release": "pnpm run build && changeset publish"
71
+ }
72
+ }