-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) 路 4.11 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) 路 4.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@hashintel/ds-components",
"version": "0.2.2",
"description": "HASH Component Library built with React, Ark UI, and PandaCSS",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "https://github.com/hashintel/hash.git",
"directory": "libs/@hashintel/ds-components"
},
"files": [
"CHANGELOG.md",
"dist",
"LICENSE",
"LICENSE-APACHE.md",
"LICENSE-MIT.md",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
"./preset": {
"types": "./dist/preset.d.ts",
"import": "./dist/preset.js"
},
"./tokens": {
"types": "./dist/tokens.d.ts",
"import": "./dist/tokens.js"
},
"./panda.buildinfo.json": "./dist/panda.buildinfo.json",
"./*": {
"types": "./dist/components/*.d.ts",
"import": "./dist/components/*.js"
},
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm-run-all build:lib build:buildinfo",
"build:buildinfo": "panda ship --config panda.config.ts --outfile dist/panda.buildinfo.json",
"build:ladle": "ladle build",
"build:lib": "tsup --config tsup.config.ts",
"codegen": "yarn run codegen:colors && yarn run codegen:tokens && yarn run codegen:panda",
"codegen:colors": "tsx scripts/generate-colors-radix.ts",
"codegen:panda": "panda codegen --clean",
"codegen:tokens": "tsx scripts/generate-tokens.ts",
"codemod:beta-fractal-pilots": "tsx scripts/migrate-beta-fractal-pilots.ts",
"dev": "yarn dev:ladle",
"dev:ladle": "ladle serve",
"dev:lib": "tsup --config tsup.config.ts --watch",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --cache --fix .",
"fix:format": "oxfmt --write",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "eslint --cache --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"lint:tsc:beta": "tsc --noEmit -p tsconfig.beta.json",
"prepare": "yarn run codegen",
"prepublishOnly": "turbo run build",
"preview:ladle": "yarn build:ladle && ladle preview",
"test:snapshots": "yarn build:ladle && playwright test",
"test:snapshots:update": "yarn build:ladle && playwright test --update-snapshots",
"test:unit": "yarn build:buildinfo && vitest run --exclude tests/snapshots.spec.ts",
"test:unit:watch": "yarn build:buildinfo && vitest --exclude tests/snapshots.spec.ts"
},
"dependencies": {
"@ark-ui/react": "5.26.2",
"@hashintel/ds-helpers": "workspace:^",
"@pandacss/dev": "1.11.1",
"@pandacss/preset-panda": "1.11.1",
"canvas": "3.2.0",
"motion": "12.23.24",
"use-callback-ref": "1.3.3"
},
"devDependencies": {
"@fontsource-variable/geist-mono": "5.2.7",
"@fontsource-variable/inter": "5.2.8",
"@fontsource-variable/inter-tight": "5.2.7",
"@ladle/react": "5.1.1",
"@local/eslint": "workspace:*",
"@local/tsconfig": "workspace:*",
"@mantine/hooks": "8.3.5",
"@playwright/test": "1.58.2",
"@radix-ui/colors": "3.0.0",
"@tanstack/react-form": "1.29.0",
"@tanstack/react-virtual": "3.13.24",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "22.18.13",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.0.4",
"@vitest/browser-playwright": "4.1.7",
"bumpp": "^10.3.2",
"case-anything": "3.1.0",
"colorjs.io": "0.6.1",
"esbuild-plugin-svgr": "3.1.1",
"eslint": "10.4.1",
"lorem-ipsum": "2.0.8",
"lucide-react": "0.544.0",
"npm-run-all": "4.1.5",
"react": "19.2.6",
"react-dom": "19.2.6",
"tsup": "^8.5.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vite": "7.3.2",
"vite-plugin-dts": "4.5.4",
"vite-plugin-svgr": "5.2.0",
"vitest": "4.1.7",
"vitest-browser-react": "^2.0.2",
"zod": "4.4.3"
},
"peerDependencies": {
"@ark-ui/react": "^5.26.2",
"@hashintel/ds-helpers": "workspace:^",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}