@tarsis/toolkit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,129 @@
1
+ {
2
+ "name": "@tarsis/toolkit",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "description": "",
9
+ "author": "Max Tarsis",
10
+ "license": "MIT",
11
+ "type": "module",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "sideEffects": [
16
+ "**/*.css"
17
+ ],
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "import": {
24
+ "types": "./dist/index.d.ts",
25
+ "default": "./dist/index.js"
26
+ },
27
+ "require": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.cjs"
30
+ }
31
+ },
32
+ "./css": "./dist/style.css"
33
+ },
34
+ "scripts": {
35
+ "dev": "storybook dev -p 6006",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "test:ui": "vitest --ui",
39
+ "test:coverage": "vitest run --coverage",
40
+ "build": "storybook build",
41
+ "build:lib": "tsc && vite build",
42
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
43
+ "format": "prettier . --write --ignore-unknown",
44
+ "prepare": "husky install"
45
+ },
46
+ "devDependencies": {
47
+ "@chromatic-com/storybook": "1.9.0",
48
+ "@faker-js/faker": "9.1.0",
49
+ "@laynezh/vite-plugin-lib-assets": "0.5.24",
50
+ "@storybook/addon-essentials": "8.4.1",
51
+ "@storybook/addon-interactions": "8.4.1",
52
+ "@storybook/addon-links": "8.4.1",
53
+ "@storybook/addon-onboarding": "8.4.1",
54
+ "@storybook/blocks": "8.4.1",
55
+ "@storybook/react": "8.4.1",
56
+ "@storybook/react-vite": "8.4.1",
57
+ "@storybook/test": "8.4.1",
58
+ "@testing-library/jest-dom": "6.5.0",
59
+ "@testing-library/react": "16.0.1",
60
+ "@testing-library/user-event": "14.5.2",
61
+ "@types/canvas-confetti": "1.6.4",
62
+ "@types/chroma-js": "2.4.4",
63
+ "@types/flickity": "2.2.7",
64
+ "@types/howler": "2.2.12",
65
+ "@types/node": "20.17.5",
66
+ "@types/react": "18.3.10",
67
+ "@types/react-dom": "18.3.0",
68
+ "@typescript-eslint/eslint-plugin": "8.12.2",
69
+ "@typescript-eslint/parser": "8.12.2",
70
+ "@vitejs/plugin-react-swc": "3.7.1",
71
+ "@vitest/coverage-v8": "2.1.4",
72
+ "@vitest/ui": "2.1.4",
73
+ "autoprefixer": "10.4.20",
74
+ "clsx": "2.1.1",
75
+ "eslint": "8.57.1",
76
+ "eslint-config-prettier": "9.1.0",
77
+ "eslint-plugin-jest-dom": "5.4.0",
78
+ "eslint-plugin-react": "7.37.2",
79
+ "eslint-plugin-react-hooks": "4.6.2",
80
+ "eslint-plugin-react-refresh": "0.4.14",
81
+ "eslint-plugin-storybook": "0.10.2",
82
+ "husky": "9.1.6",
83
+ "jsdom": "25.0.1",
84
+ "postcss": "8.4.47",
85
+ "postcss-preset-env": "10.0.9",
86
+ "prettier": "3.3.3",
87
+ "react": "18.3.1",
88
+ "react-dom": "18.3.1",
89
+ "sass": "1.80.6",
90
+ "storybook": "8.4.1",
91
+ "three": "0.117.1",
92
+ "three-bmfont-text": "3.0.1",
93
+ "three-orbit-controls": "82.1.0",
94
+ "typescript": "5.6.3",
95
+ "vite": "5.4.10",
96
+ "vite-plugin-dts": "4.3.0",
97
+ "vite-plugin-static-copy": "1.0.6",
98
+ "vite-tsconfig-paths": "5.0.1",
99
+ "vitest": "2.1.4"
100
+ },
101
+ "peerDependencies": {
102
+ "react": "^18.2.0",
103
+ "react-dom": "^18.2.0"
104
+ },
105
+ "dependencies": {
106
+ "@reach/tooltip": "0.18.0",
107
+ "@react-spring/web": "9.7.4",
108
+ "@types/dat.gui": "0.7.13",
109
+ "@types/p5": "1.7.6",
110
+ "@use-gesture/react": "10.3.1",
111
+ "bowser": "2.11.0",
112
+ "canvas-confetti": "1.9.3",
113
+ "chroma-js": "3.1.2",
114
+ "classnames": "2.5.1",
115
+ "dat.gui": "0.7.9",
116
+ "flickity": "2.0.10",
117
+ "framer-motion": "11.11.11",
118
+ "gsap": "3.12.5",
119
+ "gsap-trial": "3.12.5",
120
+ "howler": "2.2.4",
121
+ "html2canvas": "1.4.1",
122
+ "load-bmfont": "1.4.1",
123
+ "p5": "1.11.1",
124
+ "react-flip-toolkit": "7.2.4",
125
+ "react-icons": "5.3.0",
126
+ "rooks": "7.14.1",
127
+ "swiper": "11.1.14"
128
+ }
129
+ }