@otl-core/cms-types 1.0.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 (2) hide show
  1. package/LICENSE +13 -0
  2. package/package.json +45 -0
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2025 OTL Core
2
+
3
+ Licensed under the PolyForm Shield License, Version 1.0.0 (the "License");
4
+ you may not use this file except in compliance with the License. You may
5
+ obtain a copy of the License at
6
+
7
+ https://polyformproject.org/licenses/shield/1.0.0/
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
+ License for the specific language governing permissions and limitations
13
+ under the License.
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@otl-core/cms-types",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Shared TypeScript types for OTL CMS",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "clean": "rm -rf dist",
22
+ "rebuild": "npm run clean && npm run build",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "test:ui": "vitest --ui"
26
+ },
27
+ "keywords": [
28
+ "types",
29
+ "typescript",
30
+ "cms",
31
+ "responsive"
32
+ ],
33
+ "author": "OTL Core",
34
+ "license": "PolyForm-Shield-1.0.0",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/otl-core/cms-types.git"
38
+ },
39
+ "devDependencies": {
40
+ "@vitest/ui": "^4.0.0",
41
+ "tsup": "^8.0.0",
42
+ "typescript": "^5.0.0",
43
+ "vitest": "^4.0.0"
44
+ }
45
+ }