@cueplusplus/theme-base 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.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@cueplusplus/theme-base",
3
+ "version": "1.0.2",
4
+ "description": "The blank abstract theme every CUE++ theme extends: the neutral base palette, the token contracts, the manifest schema, and the resolver that turns a theme's deltas into a complete token map.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/cueplusplus/cue-ui",
10
+ "directory": "packages/theme-base"
11
+ },
12
+ "publishConfig": {
13
+ "registry": "https://registry.npmjs.org",
14
+ "access": "public"
15
+ },
16
+ "sideEffects": [
17
+ "**/*.css"
18
+ ],
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.mts",
25
+ "default": "./dist/index.mjs"
26
+ },
27
+ "./contrast": {
28
+ "types": "./dist/contrast.d.mts",
29
+ "default": "./dist/contrast.mjs"
30
+ },
31
+ "./base.css": "./dist/base.css",
32
+ "./manifest.schema.json": "./dist/manifest.schema.json",
33
+ "./package.json": "./package.json"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "CHANGELOG.md"
39
+ ],
40
+ "dependencies": {
41
+ "culori": "^4.0.2"
42
+ },
43
+ "peerDependencies": {
44
+ "@cueplusplus/tokens": ">=0.9.0 <1"
45
+ },
46
+ "devDependencies": {
47
+ "@types/culori": "^4.0.1",
48
+ "@types/node": "^24.0.0",
49
+ "ajv": "^8.17.1",
50
+ "eslint": "^9.17.0",
51
+ "publint": "^0.3.23",
52
+ "tsdown": "0.22.14",
53
+ "vitest": "^4.1.10",
54
+ "@cueplusplus/tokens": "0.13.0",
55
+ "@repo/eslint-config": "0.0.0",
56
+ "@repo/typescript-config": "0.0.0"
57
+ },
58
+ "scripts": {
59
+ "build": "node build.mjs && tsdown",
60
+ "test": "vitest run",
61
+ "lint": "eslint . --max-warnings 0",
62
+ "check:publish": "publint"
63
+ }
64
+ }