forked from PavelDoGreat/WebGL-Fluid-Simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.04 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
{
"name": "@augno/ui",
"description": "A collection of react components and other user interface utilities for Augno.",
"version": "0.7.5",
"author": "Augno, Inc.",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./styles.css": {
"import": "./dist/styles.css",
"require": "./dist/styles.css"
}
},
"scripts": {
"version": "changeset",
"clean": "rimraf dist",
"build:types": "tsc && tsc-alias",
"build:esm": "babel src --out-dir dist/esm --extensions \".ts,.tsx\" --env-name esm",
"build:cjs": "babel src --out-dir dist/cjs --extensions \".ts,.tsx\" --env-name cjs",
"build:css": "rollup -c",
"build": "bun run clean && bun run build:types && bun run build:cjs && bun run build:esm && bun run build:css",
"release": "bun run build && bunx changeset publish",
"check-changes": "changeset status || exit 1",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"yalc-publish": "bun run build && yalc publish"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.27.1",
"@changesets/cli": "^2.29.4",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-onboarding": "^8.6.14",
"@storybook/addon-themes": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/vite": "^4.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.4",
"autoprefixer": "^10.4.21",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.6.14",
"ts-jest": "^29.3.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite-plugin-glsl": "^1.4.1"
},
"peerDependencies": {
"react": "^19.0.0",
"@xyflow/react": "^12.6.4"
},
"dependencies": {
"copy-to-clipboard": "^3.3.3",
"rehype-parse": "^9.0.1",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^10.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"unified": "^11.0.5",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.7"
}
}