@shrkcrft/shared 0.1.0-alpha.1

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 SharkCraft contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @shrkcrft/shared
2
+
3
+ SharkCraft shared internals.
4
+
5
+ Part of [SharkCraft](https://github.com/sharkcraft/sharkcraft) — a deterministic, local-first toolkit that gives AI coding agents durable project context. See the main repo for documentation, examples, and the `shrk` CLI.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ bun add @shrkcrft/shared
11
+ ```
12
+
13
+ ## License
14
+
15
+ MIT — see [LICENSE](./LICENSE).
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Reserved package for shared bits that legitimately need to live across
3
+ * multiple packages without belonging to any one of them. Intentionally
4
+ * kept minimal — do not dump utilities here when @shrkcrft/core fits.
5
+ */
6
+ export declare const SHARKCRAFT_VERSION = "0.1.0-alpha.1";
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,kBAAkB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Reserved package for shared bits that legitimately need to live across
3
+ * multiple packages without belonging to any one of them. Intentionally
4
+ * kept minimal — do not dump utilities here when @shrkcrft/core fits.
5
+ */
6
+ export const SHARKCRAFT_VERSION = '0.1.0-alpha.1';
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@shrkcrft/shared",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "SharkCraft shared internals.",
5
+ "license": "MIT",
6
+ "author": "SharkCraft contributors",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "default": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/sharkcraft/sharkcraft.git",
25
+ "directory": "packages/shared"
26
+ },
27
+ "homepage": "https://github.com/sharkcraft/sharkcraft",
28
+ "bugs": {
29
+ "url": "https://github.com/sharkcraft/sharkcraft/issues"
30
+ },
31
+ "keywords": [
32
+ "sharkcraft",
33
+ "shared"
34
+ ],
35
+ "engines": {
36
+ "bun": ">=1.1.0",
37
+ "node": ">=18"
38
+ },
39
+ "scripts": {
40
+ "typecheck": "tsc --noEmit -p tsconfig.json"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ }
45
+ }