UNPKG

@stratakit/foundations

Version:
136 lines 2.87 kB
{ "name": "@stratakit/foundations", "type": "module", "version": "0.2.4", "license": "MIT", "sideEffects": false, "types": "./dist/index.d.ts", "exports": { ".": { "@stratakit/source": "./src/index.ts", "types": "./dist/index.d.ts", "development": "./dist/DEV/index.js", "default": "./dist/index.js" }, "./secret-internals": { "@stratakit/source": "./src/secret-internals.ts", "types": "./dist/secret-internals.d.ts", "development": "./dist/DEV/secret-internals.js", "default": "./dist/secret-internals.js" }, "./package.json": "./package.json" }, "files": [ "dist", "CHANGELOG.md", "LICENSE.md" ], "description": "Foundational pieces of StrataKit", "author": "Bentley Systems", "homepage": "https://github.com/iTwin/design-system", "repository": { "type": "git", "url": "https://github.com/iTwin/design-system.git", "directory": "packages/foundations" }, "keywords": [ "component", "components", "design-system", "design", "frontend", "itwin", "itwinui", "strata", "stratakit", "react", "ui", "tokens" ], "dependencies": { "@ariakit/react": "^0.4.17", "classnames": "^2.5.1" }, "devDependencies": { "@types/node": "^22.16.5", "@types/react": "^19.1.8", "@types/react-dom": "^19.1.6", "esbuild": "^0.25.8", "lightningcss": "^1.30.1", "react": "^19.1.1", "react-dom": "^19.1.1", "typescript": "~5.8.3", "@stratakit/bricks": "0.3.4" }, "peerDependencies": { "react": ">=18.0.0", "react-dom": ">=18.0.0" }, "peerDependenciesMeta": { "react": { "optional": true }, "react-dom": { "optional": true } }, "wireit": { "build": { "dependencies": [ "build:js", "build:DEV", "build:types" ] }, "build:js": { "command": "node scripts/build.js", "files": [ "src", "scripts", "../../internal", "../bricks/src/*.css", "../structures/src/*.css" ], "output": [ "dist/**/*.js", "!dist/DEV" ] }, "build:DEV": { "command": "node scripts/build.js", "files": [ "src", "scripts", "../../internal", "../bricks/src/*.css", "../structures/src/*.css" ], "output": [ "dist/DEV/**/*.js" ], "env": { "NODE_ENV": "development" } }, "build:types": { "command": "tsc --outDir dist", "files": [ "src" ], "output": [ "dist/**/*.d.ts" ] }, "dev": { "command": "tsc --watch --outDir dist", "files": [ "src" ], "service": true } }, "scripts": { "build": "wireit", "dev": "wireit" } }