fundamental-engine 0.4.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +24 -0
  3. package/package.json +34 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Zach Shallbetter
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,24 @@
1
+ # fundamental-engine
2
+
3
+ **An alias for [`@fundamental-engine/kit`](https://www.npmjs.com/package/@fundamental-engine/kit).** The bare `field-ui`
4
+ name on npm belongs to an unrelated project, so the field-ui suite lives under the `@field-ui` scope.
5
+ This package exists only so that `fundamental-engine` resolves to the whole suite for anyone who
6
+ reaches for it by name.
7
+
8
+ ## Install
9
+
10
+ ```sh
11
+ npm i fundamental-engine
12
+ ```
13
+
14
+ This pulls in [`@fundamental-engine/kit`](https://www.npmjs.com/package/@fundamental-engine/kit), which depends on every
15
+ `@fundamental-engine/*` package. Then import from the specific package you need (see the
16
+ [kit README](https://www.npmjs.com/package/@fundamental-engine/kit)).
17
+
18
+ **Prefer the direct names:**
19
+
20
+ - The engine is **[`@fundamental-engine/core`](https://www.npmjs.com/package/@fundamental-engine/core)**.
21
+ - The whole suite is **[`@fundamental-engine/kit`](https://www.npmjs.com/package/@fundamental-engine/kit)**.
22
+ - Or install just the adapter you need: `@fundamental-engine/elements`, `@fundamental-engine/react`, `@fundamental-engine/vanilla`.
23
+
24
+ → **[fundamental-engine.com](https://fundamental-engine.com)**
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "fundamental-engine",
3
+ "version": "0.4.0",
4
+ "description": "Alias for @fundamental-engine/kit — one install for the whole Fundamental suite. Prefer @fundamental-engine/kit, or install the individual @fundamental-engine/* packages directly. (The engine itself is @fundamental-engine/core.)",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Zach Shallbetter <hi@zachshallbetter.com> (https://zachshallbetter.com)",
8
+ "homepage": "https://fundamental-engine.com",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/zachshallbetter/fundamental-engine.git",
12
+ "directory": "packages/fundamental-engine"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/zachshallbetter/fundamental-engine/issues"
16
+ },
17
+ "keywords": [
18
+ "Fundamental",
19
+ "alias",
20
+ "meta",
21
+ "field",
22
+ "dom"
23
+ ],
24
+ "files": [
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "publishConfig": {
29
+ "access": "public"
30
+ },
31
+ "dependencies": {
32
+ "@fundamental-engine/kit": "0.4.0"
33
+ }
34
+ }