UNPKG

@nordcom/nordstar

Version:

An opinionated component library for building human-centric user interfaces.

114 lines 2.94 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "@nordcom/nordstar", "type": "module", "version": "0.0.73", "description": "An opinionated component library for building human-centric user interfaces.", "files": [ "dist", "CHANGELOG.md", "README.md" ], "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": [ "./dist/index.js" ], "module": [ "./dist/index.js" ], "types": [ "./dist/index.d.ts" ] }, "./*": { "import": [ "./dist/*.js" ], "module": [ "./dist/*.js" ], "types": [ "./dist/*.d.ts" ] }, "./package.json": "./package.json" }, "publishConfig": { "access": "public" }, "sideEffects": false, "keywords": [ "nordstar", "nordcom" ], "author": { "name": "Nordcom AB", "email": "opensource@nordcom.io", "url": "https://nordcom.io/" }, "contributors": [ { "name": "Filiph Siitam Sandström", "email": "filiph@nordcom.io", "url": "https://github.com/filiphsps/" } ], "repository": { "type": "git", "url": "git+https://github.com/NordcomInc/nordstar.git", "directory": "packages/core/nordstar" }, "license": "MIT", "bugs": { "url": "https://github.com/NordcomInc/nordstar/issues" }, "homepage": "https://nordstar.dev/", "dependencies": { "class-variance-authority": "0.7.0", "@nordcom/nordstar-accented": "0.0.73", "@nordcom/nordstar-button": "0.0.73", "@nordcom/nordstar-card": "0.0.73", "@nordcom/nordstar-details": "0.0.73", "@nordcom/nordstar-header": "0.0.73", "@nordcom/nordstar-heading": "0.0.73", "@nordcom/nordstar-input": "0.0.73", "@nordcom/nordstar-label": "0.0.73", "@nordcom/nordstar-system": "0.0.73", "@nordcom/nordstar-view": "0.0.73" }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, "devDependencies": { "@nordcom/prettier": "0.1.1", "@types/node": "24.0.10", "@types/react-dom": "19.1.6", "@types/react": "19.1.8", "autoprefixer": "10.4.20", "postcss-import": "16.1.0", "postcss": "8.5.6", "prettier": "3.6.2", "react-dom": "19.1.0", "react": "19.1.0", "tailwindcss": "3.4.14", "typescript": "5.8.3", "vite-plugin-dts": "4.5.4", "vite-tsconfig-paths": "5.1.4", "vite": "7.0.0" }, "scripts": { "build": "tsc && vite build", "dev": "vite build --watch", "clean": "rm -rf dist coverage storybook-static .turbo .next *.tsbuildinfo *.log", "typecheck": "tsc --noEmit", "lint": "concurrently -i pnpm:lint:*", "lint:prettier": "prettier --check \"./**/src/**/*.{cjs,mjs,ts,tsx}\"", "format": "concurrently -i pnpm:format:*", "format:prettier": "prettier --write \"./**/src/**/*.{cjs,mjs,ts,tsx}\"" } }