@guru-ai-product/ai-product-kit 0.2.251113194913 → 0.2.251113205658

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 (129) hide show
  1. package/mcp/skills/aipk_init_project/template/AGENTS_TEMPLATE.md +1 -1
  2. package/mcp/src/server.js +1 -1
  3. package/package.json +1 -1
  4. package/skills/aipk_design/GURU_AI.md +119 -7
  5. package/skills/aipk_design/SKILL.md +8 -7
  6. package/skills/aipk_design/{auto_panel_splitter → update-requirements-from-design}/SKILL.md +18 -16
  7. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/.package-lock.json +113 -0
  8. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/colour/LICENSE.md +82 -0
  9. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/colour/README.md +15 -0
  10. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/colour/color.cjs +1594 -0
  11. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/colour/index.cjs +1 -0
  12. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/colour/package.json +45 -0
  13. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-darwin-arm64/LICENSE +191 -0
  14. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-darwin-arm64/README.md +18 -0
  15. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-darwin-arm64/lib/sharp-darwin-arm64.node +0 -0
  16. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-darwin-arm64/package.json +40 -0
  17. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/README.md +46 -0
  18. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/lib/glib-2.0/include/glibconfig.h +220 -0
  19. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/lib/index.js +1 -0
  20. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/lib/libvips-cpp.8.17.3.dylib +0 -0
  21. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/package.json +36 -0
  22. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/@img/sharp-libvips-darwin-arm64/versions.json +30 -0
  23. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/LICENSE +201 -0
  24. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/README.md +163 -0
  25. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/index.d.ts +14 -0
  26. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/lib/detect-libc.js +313 -0
  27. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/lib/elf.js +39 -0
  28. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/lib/filesystem.js +51 -0
  29. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/lib/process.js +24 -0
  30. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/detect-libc/package.json +44 -0
  31. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/LICENSE +15 -0
  32. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/README.md +664 -0
  33. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/bin/semver.js +191 -0
  34. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/classes/comparator.js +143 -0
  35. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/classes/index.js +7 -0
  36. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/classes/range.js +557 -0
  37. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/classes/semver.js +333 -0
  38. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/clean.js +8 -0
  39. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/cmp.js +54 -0
  40. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/coerce.js +62 -0
  41. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/compare-build.js +9 -0
  42. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/compare-loose.js +5 -0
  43. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/compare.js +7 -0
  44. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/diff.js +60 -0
  45. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/eq.js +5 -0
  46. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/gt.js +5 -0
  47. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/gte.js +5 -0
  48. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/inc.js +21 -0
  49. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/lt.js +5 -0
  50. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/lte.js +5 -0
  51. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/major.js +5 -0
  52. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/minor.js +5 -0
  53. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/neq.js +5 -0
  54. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/parse.js +18 -0
  55. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/patch.js +5 -0
  56. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/prerelease.js +8 -0
  57. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/rcompare.js +5 -0
  58. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/rsort.js +5 -0
  59. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/satisfies.js +12 -0
  60. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/sort.js +5 -0
  61. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/functions/valid.js +8 -0
  62. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/index.js +91 -0
  63. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/constants.js +37 -0
  64. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/debug.js +11 -0
  65. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/identifiers.js +29 -0
  66. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/lrucache.js +42 -0
  67. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/parse-options.js +17 -0
  68. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/internal/re.js +223 -0
  69. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/package.json +78 -0
  70. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/preload.js +4 -0
  71. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/range.bnf +16 -0
  72. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/gtr.js +6 -0
  73. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/intersects.js +9 -0
  74. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/ltr.js +6 -0
  75. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/max-satisfying.js +27 -0
  76. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/min-satisfying.js +26 -0
  77. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/min-version.js +63 -0
  78. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/outside.js +82 -0
  79. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/simplify.js +49 -0
  80. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/subset.js +249 -0
  81. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/to-comparators.js +10 -0
  82. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/semver/ranges/valid.js +13 -0
  83. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/LICENSE +191 -0
  84. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/README.md +118 -0
  85. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/install/build.js +38 -0
  86. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/install/check.js +14 -0
  87. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/channel.js +177 -0
  88. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/colour.js +195 -0
  89. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/composite.js +212 -0
  90. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/constructor.js +499 -0
  91. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/index.d.ts +1971 -0
  92. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/index.js +16 -0
  93. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/input.js +809 -0
  94. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/is.js +143 -0
  95. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/libvips.js +207 -0
  96. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/operation.js +1016 -0
  97. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/output.js +1666 -0
  98. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/resize.js +595 -0
  99. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/sharp.js +121 -0
  100. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/lib/utility.js +291 -0
  101. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/package.json +202 -0
  102. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/binding.gyp +298 -0
  103. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/common.cc +1130 -0
  104. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/common.h +402 -0
  105. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/metadata.cc +346 -0
  106. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/metadata.h +90 -0
  107. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/operations.cc +499 -0
  108. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/operations.h +137 -0
  109. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/pipeline.cc +1814 -0
  110. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/pipeline.h +408 -0
  111. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/sharp.cc +43 -0
  112. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/stats.cc +186 -0
  113. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/stats.h +62 -0
  114. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/utilities.cc +288 -0
  115. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/node_modules/sharp/src/utilities.h +22 -0
  116. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/package-lock.json +529 -0
  117. package/skills/aipk_design/update-requirements-from-design/scripts/sharp-runtime/package.json +5 -0
  118. package/skills/aipk_design/{auto_panel_splitter/scripts/auto_panel_splitter_bundle.js → update-requirements-from-design/scripts/split-design-boards-bundle.js} +10 -1
  119. package/skills/aipk_design/{auto_panel_splitter/scripts/panel_asset_mapper_bundle.js → update-requirements-from-design/scripts/sync-design-to-requirements-bundle.js} +10 -1
  120. package/skills/aipk_development/GURU_AI.md +1 -1
  121. package/skills/aipk_init_project/GURU_AI.md +2 -2
  122. package/skills/aipk_init_project/template/AGENTS_TEMPLATE.md +1 -1
  123. package/skills/aipk_operations/GURU_AI.md +1 -1
  124. package/skills/aipk_requirements/GURU_AI.md +2 -2
  125. package/skills/aipk_requirements/documentation/SKILL.md +23 -1
  126. package/skills/aipk_skill_generate/GURU_AI.md +1 -1
  127. package/skills/aipk_tool_prompts/GURU_AI.md +1 -1
  128. /package/skills/aipk_design/{auto_panel_splitter → update-requirements-from-design}/scripts/auto_panel_splitter.js +0 -0
  129. /package/skills/aipk_design/{auto_panel_splitter → update-requirements-from-design}/scripts/panel_asset_mapper.js +0 -0
@@ -0,0 +1 @@
1
+ module.exports = require("./color.cjs").default;
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@img/colour",
3
+ "version": "1.0.0",
4
+ "description": "The ESM-only 'color' package made compatible for use with CommonJS runtimes",
5
+ "license": "MIT",
6
+ "main": "index.cjs",
7
+ "authors": [
8
+ "Heather Arthur <fayearthur@gmail.com>",
9
+ "Josh Junon <josh@junon.me>",
10
+ "Maxime Thirouin",
11
+ "Dyma Ywanov <dfcreative@gmail.com>",
12
+ "LitoMore (https://github.com/LitoMore)"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "files": [
18
+ "color.cjs"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/lovell/colour.git"
26
+ },
27
+ "type": "commonjs",
28
+ "keywords": [
29
+ "color",
30
+ "colour",
31
+ "cjs",
32
+ "commonjs"
33
+ ],
34
+ "scripts": {
35
+ "build": "esbuild node_modules/color/index.js --bundle --platform=node --outfile=color.cjs",
36
+ "test": "node --test"
37
+ },
38
+ "devDependencies": {
39
+ "color": "5.0.0",
40
+ "color-convert": "3.1.0",
41
+ "color-name": "2.0.0",
42
+ "color-string": "2.1.0",
43
+ "esbuild": "^0.25.9"
44
+ }
45
+ }
@@ -0,0 +1,191 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
+ owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities
16
+ that control, are controlled by, or are under common control with that entity.
17
+ For the purposes of this definition, "control" means (i) the power, direct or
18
+ indirect, to cause the direction or management of such entity, whether by
19
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including
26
+ but not limited to software source code, documentation source, and configuration
27
+ files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object code,
31
+ generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made
34
+ available under the License, as indicated by a copyright notice that is included
35
+ in or attached to the work (an example is provided in the Appendix below).
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
38
+ is based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version
45
+ of the Work and any modifications or additions to that Work or Derivative Works
46
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
+ by the copyright owner or by an individual or Legal Entity authorized to submit
48
+ on behalf of the copyright owner. For the purposes of this definition,
49
+ "submitted" means any form of electronic, verbal, or written communication sent
50
+ to the Licensor or its representatives, including but not limited to
51
+ communication on electronic mailing lists, source code control systems, and
52
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
53
+ the purpose of discussing and improving the Work, but excluding communication
54
+ that is conspicuously marked or otherwise designated in writing by the copyright
55
+ owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
+ of whom a Contribution has been received by Licensor and subsequently
59
+ incorporated within the Work.
60
+
61
+ 2. Grant of Copyright License.
62
+
63
+ Subject to the terms and conditions of this License, each Contributor hereby
64
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
65
+ irrevocable copyright license to reproduce, prepare Derivative Works of,
66
+ publicly display, publicly perform, sublicense, and distribute the Work and such
67
+ Derivative Works in Source or Object form.
68
+
69
+ 3. Grant of Patent License.
70
+
71
+ Subject to the terms and conditions of this License, each Contributor hereby
72
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
73
+ irrevocable (except as stated in this section) patent license to make, have
74
+ made, use, offer to sell, sell, import, and otherwise transfer the Work, where
75
+ such license applies only to those patent claims licensable by such Contributor
76
+ that are necessarily infringed by their Contribution(s) alone or by combination
77
+ of their Contribution(s) with the Work to which such Contribution(s) was
78
+ submitted. If You institute patent litigation against any entity (including a
79
+ cross-claim or counterclaim in a lawsuit) alleging that the Work or a
80
+ Contribution incorporated within the Work constitutes direct or contributory
81
+ patent infringement, then any patent licenses granted to You under this License
82
+ for that Work shall terminate as of the date such litigation is filed.
83
+
84
+ 4. Redistribution.
85
+
86
+ You may reproduce and distribute copies of the Work or Derivative Works thereof
87
+ in any medium, with or without modifications, and in Source or Object form,
88
+ provided that You meet the following conditions:
89
+
90
+ You must give any other recipients of the Work or Derivative Works a copy of
91
+ this License; and
92
+ You must cause any modified files to carry prominent notices stating that You
93
+ changed the files; and
94
+ You must retain, in the Source form of any Derivative Works that You distribute,
95
+ all copyright, patent, trademark, and attribution notices from the Source form
96
+ of the Work, excluding those notices that do not pertain to any part of the
97
+ Derivative Works; and
98
+ If the Work includes a "NOTICE" text file as part of its distribution, then any
99
+ Derivative Works that You distribute must include a readable copy of the
100
+ attribution notices contained within such NOTICE file, excluding those notices
101
+ that do not pertain to any part of the Derivative Works, in at least one of the
102
+ following places: within a NOTICE text file distributed as part of the
103
+ Derivative Works; within the Source form or documentation, if provided along
104
+ with the Derivative Works; or, within a display generated by the Derivative
105
+ Works, if and wherever such third-party notices normally appear. The contents of
106
+ the NOTICE file are for informational purposes only and do not modify the
107
+ License. You may add Your own attribution notices within Derivative Works that
108
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
109
+ provided that such additional attribution notices cannot be construed as
110
+ modifying the License.
111
+ You may add Your own copyright statement to Your modifications and may provide
112
+ additional or different license terms and conditions for use, reproduction, or
113
+ distribution of Your modifications, or for any such Derivative Works as a whole,
114
+ provided Your use, reproduction, and distribution of the Work otherwise complies
115
+ with the conditions stated in this License.
116
+
117
+ 5. Submission of Contributions.
118
+
119
+ Unless You explicitly state otherwise, any Contribution intentionally submitted
120
+ for inclusion in the Work by You to the Licensor shall be under the terms and
121
+ conditions of this License, without any additional terms or conditions.
122
+ Notwithstanding the above, nothing herein shall supersede or modify the terms of
123
+ any separate license agreement you may have executed with Licensor regarding
124
+ such Contributions.
125
+
126
+ 6. Trademarks.
127
+
128
+ This License does not grant permission to use the trade names, trademarks,
129
+ service marks, or product names of the Licensor, except as required for
130
+ reasonable and customary use in describing the origin of the Work and
131
+ reproducing the content of the NOTICE file.
132
+
133
+ 7. Disclaimer of Warranty.
134
+
135
+ Unless required by applicable law or agreed to in writing, Licensor provides the
136
+ Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
137
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
138
+ including, without limitation, any warranties or conditions of TITLE,
139
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
140
+ solely responsible for determining the appropriateness of using or
141
+ redistributing the Work and assume any risks associated with Your exercise of
142
+ permissions under this License.
143
+
144
+ 8. Limitation of Liability.
145
+
146
+ In no event and under no legal theory, whether in tort (including negligence),
147
+ contract, or otherwise, unless required by applicable law (such as deliberate
148
+ and grossly negligent acts) or agreed to in writing, shall any Contributor be
149
+ liable to You for damages, including any direct, indirect, special, incidental,
150
+ or consequential damages of any character arising as a result of this License or
151
+ out of the use or inability to use the Work (including but not limited to
152
+ damages for loss of goodwill, work stoppage, computer failure or malfunction, or
153
+ any and all other commercial damages or losses), even if such Contributor has
154
+ been advised of the possibility of such damages.
155
+
156
+ 9. Accepting Warranty or Additional Liability.
157
+
158
+ While redistributing the Work or Derivative Works thereof, You may choose to
159
+ offer, and charge a fee for, acceptance of support, warranty, indemnity, or
160
+ other liability obligations and/or rights consistent with this License. However,
161
+ in accepting such obligations, You may act only on Your own behalf and on Your
162
+ sole responsibility, not on behalf of any other Contributor, and only if You
163
+ agree to indemnify, defend, and hold each Contributor harmless for any liability
164
+ incurred by, or claims asserted against, such Contributor by reason of your
165
+ accepting any such warranty or additional liability.
166
+
167
+ END OF TERMS AND CONDITIONS
168
+
169
+ APPENDIX: How to apply the Apache License to your work
170
+
171
+ To apply the Apache License to your work, attach the following boilerplate
172
+ notice, with the fields enclosed by brackets "[]" replaced with your own
173
+ identifying information. (Don't include the brackets!) The text should be
174
+ enclosed in the appropriate comment syntax for the file format. We also
175
+ recommend that a file or class name and description of purpose be included on
176
+ the same "printed page" as the copyright notice for easier identification within
177
+ third-party archives.
178
+
179
+ Copyright [yyyy] [name of copyright owner]
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ http://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
+ limitations under the License.
@@ -0,0 +1,18 @@
1
+ # `@img/sharp-darwin-arm64`
2
+
3
+ Prebuilt sharp for use with macOS 64-bit ARM.
4
+
5
+ ## Licensing
6
+
7
+ Copyright 2013 Lovell Fuller and others.
8
+
9
+ Licensed under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License.
11
+ You may obtain a copy of the License at
12
+ [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)
13
+
14
+ Unless required by applicable law or agreed to in writing, software
15
+ distributed under the License is distributed on an "AS IS" BASIS,
16
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ See the License for the specific language governing permissions and
18
+ limitations under the License.
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@img/sharp-darwin-arm64",
3
+ "version": "0.34.5",
4
+ "description": "Prebuilt sharp for use with macOS 64-bit ARM",
5
+ "author": "Lovell Fuller <npm@lovell.info>",
6
+ "homepage": "https://sharp.pixelplumbing.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/lovell/sharp.git",
10
+ "directory": "npm/darwin-arm64"
11
+ },
12
+ "license": "Apache-2.0",
13
+ "funding": {
14
+ "url": "https://opencollective.com/libvips"
15
+ },
16
+ "preferUnplugged": true,
17
+ "optionalDependencies": {
18
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
19
+ },
20
+ "files": [
21
+ "lib"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "type": "commonjs",
27
+ "exports": {
28
+ "./sharp.node": "./lib/sharp-darwin-arm64.node",
29
+ "./package": "./package.json"
30
+ },
31
+ "engines": {
32
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
33
+ },
34
+ "os": [
35
+ "darwin"
36
+ ],
37
+ "cpu": [
38
+ "arm64"
39
+ ]
40
+ }
@@ -0,0 +1,46 @@
1
+ # `@img/sharp-libvips-darwin-arm64`
2
+
3
+ Prebuilt libvips and dependencies for use with sharp on macOS 64-bit ARM.
4
+
5
+ ## Licensing
6
+
7
+ This software contains third-party libraries
8
+ used under the terms of the following licences:
9
+
10
+ | Library | Used under the terms of |
11
+ |---------------|-----------------------------------------------------------------------------------------------------------|
12
+ | aom | BSD 2-Clause + [Alliance for Open Media Patent License 1.0](https://aomedia.org/license/patent-license/) |
13
+ | cairo | Mozilla Public License 2.0 |
14
+ | cgif | MIT Licence |
15
+ | expat | MIT Licence |
16
+ | fontconfig | [fontconfig Licence](https://gitlab.freedesktop.org/fontconfig/fontconfig/blob/main/COPYING) (BSD-like) |
17
+ | freetype | [freetype Licence](https://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT) (BSD-like) |
18
+ | fribidi | LGPLv3 |
19
+ | glib | LGPLv3 |
20
+ | harfbuzz | MIT Licence |
21
+ | highway | Apache-2.0 License, BSD 3-Clause |
22
+ | lcms | MIT Licence |
23
+ | libarchive | BSD 2-Clause |
24
+ | libexif | LGPLv3 |
25
+ | libffi | MIT Licence |
26
+ | libheif | LGPLv3 |
27
+ | libimagequant | [BSD 2-Clause](https://github.com/lovell/libimagequant/blob/main/COPYRIGHT) |
28
+ | libnsgif | MIT Licence |
29
+ | libpng | [libpng License](https://github.com/pnggroup/libpng/blob/master/LICENSE) |
30
+ | librsvg | LGPLv3 |
31
+ | libspng | [BSD 2-Clause, libpng License](https://github.com/randy408/libspng/blob/master/LICENSE) |
32
+ | libtiff | [libtiff License](https://gitlab.com/libtiff/libtiff/blob/master/LICENSE.md) (BSD-like) |
33
+ | libvips | LGPLv3 |
34
+ | libwebp | New BSD License |
35
+ | libxml2 | MIT Licence |
36
+ | mozjpeg | [zlib License, IJG License, BSD-3-Clause](https://github.com/mozilla/mozjpeg/blob/master/LICENSE.md) |
37
+ | pango | LGPLv3 |
38
+ | pixman | MIT Licence |
39
+ | proxy-libintl | LGPLv3 |
40
+ | zlib-ng | [zlib Licence](https://github.com/zlib-ng/zlib-ng/blob/develop/LICENSE.md) |
41
+
42
+ Use of libraries under the terms of the LGPLv3 is via the
43
+ "any later version" clause of the LGPLv2 or LGPLv2.1.
44
+
45
+ Please report any errors or omissions via
46
+ https://github.com/lovell/sharp-libvips/issues/new
@@ -0,0 +1,220 @@
1
+ /* glibconfig.h
2
+ *
3
+ * This is a generated file. Please modify 'glibconfig.h.in'
4
+ */
5
+
6
+ #ifndef __GLIBCONFIG_H__
7
+ #define __GLIBCONFIG_H__
8
+
9
+ #include <glib/gmacros.h>
10
+
11
+ #include <limits.h>
12
+ #include <float.h>
13
+ #define GLIB_HAVE_ALLOCA_H
14
+
15
+ #define GLIB_STATIC_COMPILATION 1
16
+ #define GOBJECT_STATIC_COMPILATION 1
17
+ #define GIO_STATIC_COMPILATION 1
18
+ #define GMODULE_STATIC_COMPILATION 1
19
+ #define GI_STATIC_COMPILATION 1
20
+ #define G_INTL_STATIC_COMPILATION 1
21
+ #define FFI_STATIC_BUILD 1
22
+
23
+ /* Specifies that GLib's g_print*() functions wrap the
24
+ * system printf functions. This is useful to know, for example,
25
+ * when using glibc's register_printf_function().
26
+ */
27
+ #define GLIB_USING_SYSTEM_PRINTF
28
+
29
+ G_BEGIN_DECLS
30
+
31
+ #define G_MINFLOAT FLT_MIN
32
+ #define G_MAXFLOAT FLT_MAX
33
+ #define G_MINDOUBLE DBL_MIN
34
+ #define G_MAXDOUBLE DBL_MAX
35
+ #define G_MINSHORT SHRT_MIN
36
+ #define G_MAXSHORT SHRT_MAX
37
+ #define G_MAXUSHORT USHRT_MAX
38
+ #define G_MININT INT_MIN
39
+ #define G_MAXINT INT_MAX
40
+ #define G_MAXUINT UINT_MAX
41
+ #define G_MINLONG LONG_MIN
42
+ #define G_MAXLONG LONG_MAX
43
+ #define G_MAXULONG ULONG_MAX
44
+
45
+ typedef signed char gint8;
46
+ typedef unsigned char guint8;
47
+
48
+ typedef signed short gint16;
49
+ typedef unsigned short guint16;
50
+
51
+ #define G_GINT16_MODIFIER "h"
52
+ #define G_GINT16_FORMAT "hi"
53
+ #define G_GUINT16_FORMAT "hu"
54
+
55
+
56
+ typedef signed int gint32;
57
+ typedef unsigned int guint32;
58
+
59
+ #define G_GINT32_MODIFIER ""
60
+ #define G_GINT32_FORMAT "i"
61
+ #define G_GUINT32_FORMAT "u"
62
+
63
+
64
+ #define G_HAVE_GINT64 1 /* deprecated, always true */
65
+
66
+ G_GNUC_EXTENSION typedef signed long long gint64;
67
+ G_GNUC_EXTENSION typedef unsigned long long guint64;
68
+
69
+ #define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
70
+ #define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL))
71
+
72
+ #define G_GINT64_MODIFIER "ll"
73
+ #define G_GINT64_FORMAT "lli"
74
+ #define G_GUINT64_FORMAT "llu"
75
+
76
+
77
+ #define GLIB_SIZEOF_VOID_P 8
78
+ #define GLIB_SIZEOF_LONG 8
79
+ #define GLIB_SIZEOF_SIZE_T 8
80
+ #define GLIB_SIZEOF_SSIZE_T 8
81
+
82
+ typedef signed long gssize;
83
+ typedef unsigned long gsize;
84
+ #define G_GSIZE_MODIFIER "l"
85
+ #define G_GSSIZE_MODIFIER "l"
86
+ #define G_GSIZE_FORMAT "lu"
87
+ #define G_GSSIZE_FORMAT "li"
88
+
89
+ #define G_MAXSIZE G_MAXULONG
90
+ #define G_MINSSIZE G_MINLONG
91
+ #define G_MAXSSIZE G_MAXLONG
92
+
93
+ typedef gint64 goffset;
94
+ #define G_MINOFFSET G_MININT64
95
+ #define G_MAXOFFSET G_MAXINT64
96
+
97
+ #define G_GOFFSET_MODIFIER G_GINT64_MODIFIER
98
+ #define G_GOFFSET_FORMAT G_GINT64_FORMAT
99
+ #define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val)
100
+
101
+ #define G_POLLFD_FORMAT "%d"
102
+
103
+ #define GPOINTER_TO_INT(p) ((gint) (glong) (p))
104
+ #define GPOINTER_TO_UINT(p) ((guint) (gulong) (p))
105
+
106
+ #define GINT_TO_POINTER(i) ((gpointer) (glong) (i))
107
+ #define GUINT_TO_POINTER(u) ((gpointer) (gulong) (u))
108
+
109
+ typedef signed long gintptr;
110
+ typedef unsigned long guintptr;
111
+
112
+ #define G_GINTPTR_MODIFIER "l"
113
+ #define G_GINTPTR_FORMAT "li"
114
+ #define G_GUINTPTR_FORMAT "lu"
115
+
116
+ #define GLIB_MAJOR_VERSION 2
117
+ #define GLIB_MINOR_VERSION 86
118
+ #define GLIB_MICRO_VERSION 1
119
+
120
+ #define G_OS_UNIX
121
+
122
+ #define G_VA_COPY va_copy
123
+
124
+
125
+ #define G_HAVE_ISO_VARARGS 1
126
+
127
+ /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
128
+ * is passed ISO vararg support is turned off, and there is no work
129
+ * around to turn it on, so we unconditionally turn it off.
130
+ */
131
+ #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
132
+ # undef G_HAVE_ISO_VARARGS
133
+ #endif
134
+
135
+ #define G_HAVE_GROWING_STACK 0
136
+
137
+ #ifndef _MSC_VER
138
+ # define G_HAVE_GNUC_VARARGS 1
139
+ #endif
140
+
141
+ #if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
142
+ #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
143
+ #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
144
+ #define G_GNUC_INTERNAL __hidden
145
+ #elif defined (__GNUC__) && defined (G_HAVE_GNUC_VISIBILITY)
146
+ #define G_GNUC_INTERNAL __attribute__((visibility("hidden")))
147
+ #else
148
+ #define G_GNUC_INTERNAL
149
+ #endif
150
+
151
+ #define G_THREADS_ENABLED
152
+ #define G_THREADS_IMPL_POSIX
153
+
154
+ #define G_ATOMIC_LOCK_FREE
155
+
156
+ #define GINT16_TO_LE(val) ((gint16) (val))
157
+ #define GUINT16_TO_LE(val) ((guint16) (val))
158
+ #define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val))
159
+ #define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val))
160
+
161
+ #define GINT32_TO_LE(val) ((gint32) (val))
162
+ #define GUINT32_TO_LE(val) ((guint32) (val))
163
+ #define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val))
164
+ #define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val))
165
+
166
+ #define GINT64_TO_LE(val) ((gint64) (val))
167
+ #define GUINT64_TO_LE(val) ((guint64) (val))
168
+ #define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val))
169
+ #define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val))
170
+
171
+ #define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val))
172
+ #define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val))
173
+ #define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val))
174
+ #define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val))
175
+ #define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val))
176
+ #define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val))
177
+ #define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val))
178
+ #define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val))
179
+ #define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val))
180
+ #define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val))
181
+ #define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val))
182
+ #define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val))
183
+ #define G_BYTE_ORDER G_LITTLE_ENDIAN
184
+
185
+ #define GLIB_SYSDEF_POLLIN =1
186
+ #define GLIB_SYSDEF_POLLOUT =4
187
+ #define GLIB_SYSDEF_POLLPRI =2
188
+ #define GLIB_SYSDEF_POLLHUP =16
189
+ #define GLIB_SYSDEF_POLLERR =8
190
+ #define GLIB_SYSDEF_POLLNVAL =32
191
+
192
+ /* No way to disable deprecation warnings for macros, so only emit deprecation
193
+ * warnings on platforms where usage of this macro is broken */
194
+ #if defined(__APPLE__) || defined(_MSC_VER) || defined(__CYGWIN__)
195
+ #define G_MODULE_SUFFIX "so" GLIB_DEPRECATED_MACRO_IN_2_76
196
+ #else
197
+ #define G_MODULE_SUFFIX "so"
198
+ #endif
199
+
200
+ typedef int GPid;
201
+ #define G_PID_FORMAT "i"
202
+
203
+ #define GLIB_SYSDEF_AF_UNIX 1
204
+ #define GLIB_SYSDEF_AF_INET 2
205
+ #define GLIB_SYSDEF_AF_INET6 30
206
+
207
+ #define GLIB_SYSDEF_MSG_OOB 1
208
+ #define GLIB_SYSDEF_MSG_PEEK 2
209
+ #define GLIB_SYSDEF_MSG_DONTROUTE 4
210
+
211
+ #define G_DIR_SEPARATOR '/'
212
+ #define G_DIR_SEPARATOR_S "/"
213
+ #define G_SEARCHPATH_SEPARATOR ':'
214
+ #define G_SEARCHPATH_SEPARATOR_S ":"
215
+
216
+ #undef G_HAVE_FREE_SIZED
217
+
218
+ G_END_DECLS
219
+
220
+ #endif /* __GLIBCONFIG_H__ */
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@img/sharp-libvips-darwin-arm64",
3
+ "version": "1.2.4",
4
+ "description": "Prebuilt libvips and dependencies for use with sharp on macOS 64-bit ARM",
5
+ "author": "Lovell Fuller <npm@lovell.info>",
6
+ "homepage": "https://sharp.pixelplumbing.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/lovell/sharp-libvips.git",
10
+ "directory": "npm/darwin-arm64"
11
+ },
12
+ "license": "LGPL-3.0-or-later",
13
+ "funding": {
14
+ "url": "https://opencollective.com/libvips"
15
+ },
16
+ "preferUnplugged": true,
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "files": [
21
+ "lib",
22
+ "versions.json"
23
+ ],
24
+ "type": "commonjs",
25
+ "exports": {
26
+ "./lib": "./lib/index.js",
27
+ "./package": "./package.json",
28
+ "./versions": "./versions.json"
29
+ },
30
+ "os": [
31
+ "darwin"
32
+ ],
33
+ "cpu": [
34
+ "arm64"
35
+ ]
36
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "aom": "3.13.1",
3
+ "archive": "3.8.2",
4
+ "cairo": "1.18.4",
5
+ "cgif": "0.5.0",
6
+ "exif": "0.6.25",
7
+ "expat": "2.7.3",
8
+ "ffi": "3.5.2",
9
+ "fontconfig": "2.17.1",
10
+ "freetype": "2.14.1",
11
+ "fribidi": "1.0.16",
12
+ "glib": "2.86.1",
13
+ "harfbuzz": "12.1.0",
14
+ "heif": "1.20.2",
15
+ "highway": "1.3.0",
16
+ "imagequant": "2.4.1",
17
+ "lcms": "2.17",
18
+ "mozjpeg": "0826579",
19
+ "pango": "1.57.0",
20
+ "pixman": "0.46.4",
21
+ "png": "1.6.50",
22
+ "proxy-libintl": "0.5",
23
+ "rsvg": "2.61.2",
24
+ "spng": "0.7.4",
25
+ "tiff": "4.7.1",
26
+ "vips": "8.17.3",
27
+ "webp": "1.6.0",
28
+ "xml2": "2.15.1",
29
+ "zlib-ng": "2.2.5"
30
+ }