learning_ai_common_plat/packages/design-tokens/package.json
saravanakumardb1 90b9cf93d8 fix(common): configure ESLint 9 and fix lint issues
- Added @eslint/js dependency
- Updated eslint.config.js for ESLint 9 compatibility
- Added required globals (crypto, localStorage, React, etc.)
- Fixed unused imports and variables
- Disabled sort-imports temporarily
- Formatted all files with Prettier
2026-02-12 16:37:30 -08:00

30 lines
574 B
JSON

{
"name": "@bytelyst/design-tokens",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./tokens.json": "./tokens/bytelyst.tokens.json",
"./css": "./generated/tokens.css"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"tokens",
"generated",
"scripts"
],
"scripts": {
"build": "tsc",
"generate": "tsx scripts/generate.ts",
"test": "vitest run"
},
"devDependencies": {
"tsx": "^4.0.0"
}
}