-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@corelinkplatform/design-system",
"version": "0.1.0-alpha.5",
"description": "Runtime design system for the Core product family",
"type": "module",
"private": false,
"files": ["dist", "README.md", "CHANGELOG.md"],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./tokens": {
"types": "./dist/tokens/index.d.ts",
"import": "./dist/tokens/index.js",
"default": "./dist/tokens/index.js"
},
"./styles.css": "./dist/styles/index.css",
"./experimental/styles.css": "./dist/experimental/styles.css"
},
"sideEffects": ["**/*.css"],
"packageManager": "pnpm@10.15.0",
"engines": {"node": ">=22"},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "pnpm clean && tsc -p tsconfig.build.json && node scripts/copy-package-assets.mjs",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"tokens:generate": "node scripts/generate-tokens.mjs",
"tokens:check": "node scripts/generate-tokens.mjs --check",
"package:check": "pnpm build && node scripts/check-package.mjs && npm pack --dry-run"
},
"peerDependencies": {"react": ">=18"},
"dependencies": {
"@fontsource-variable/handjet": "^5.2.8",
"@fontsource-variable/noto-sans": "^5.2.8",
"@fontsource-variable/noto-sans-arabic": "^5.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@storybook/addon-essentials": "^8.6.18",
"@storybook/addon-themes": "^8.6.18",
"@storybook/react": "^8.6.18",
"@storybook/react-vite": "^8.6.18",
"@types/react": "^19.2.18",
"eslint": "^10.9.1",
"react": "^19.2.8",
"storybook": "^8.6.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0",
"vite": "^6.3.5",
"vitest": "^4.1.11"
}
}