Files
Kaloyan Danchev 8a295c4acf Initial commit: @ampeco/design-tokens v1.0.0
Design token system for AMPECO Embedded Web Apps with light/dark themes,
CSS custom properties, and runtime theme application via applyTheme().

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-18 19:34:08 +02:00

30 lines
556 B
JSON

{
"name": "@ampeco/design-tokens",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./css": "./css/variables.css",
"./css/*": "./css/*"
},
"files": [
"dist",
"css"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.4.0"
}
}