@thesvg/icons 0.9.0 → 1.0.2

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.
Files changed (1) hide show
  1. package/package.json +11 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thesvg/icons",
3
- "version": "0.9.0",
3
+ "version": "1.0.2",
4
4
  "description": "Tree-shakeable SVG icon components and raw SVG strings from thesvg.org - 3,800+ brand icons",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -44,17 +44,20 @@
44
44
  "README.md",
45
45
  "LICENSE"
46
46
  ],
47
- "scripts": {
48
- "build": "tsx scripts/build-icons.ts",
49
- "audit": "node scripts/security-audit.mjs",
50
- "validate": "node scripts/validate-dist.mjs",
51
- "prepublishOnly": "npm run build && npm run audit && npm run validate"
52
- },
53
47
  "devDependencies": {
54
48
  "tsx": "^4.21.0",
55
49
  "typescript": "^5.0.0"
56
50
  },
57
51
  "engines": {
58
52
  "node": ">=18"
53
+ },
54
+ "publishConfig": {
55
+ "provenance": true,
56
+ "access": "public"
57
+ },
58
+ "scripts": {
59
+ "build": "tsx scripts/build-icons.ts",
60
+ "audit": "node scripts/security-audit.mjs",
61
+ "validate": "node scripts/validate-dist.mjs"
59
62
  }
60
- }
63
+ }