-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.31 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.31 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
{
"name": "@voxel51/voodo",
"version": "0.0.22",
"description": "Voxel51's official design ontology (VOODO) system",
"type": "module",
"author": "Voxel Engineering <engineering@voxel51.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/voxel51/design-system.git"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./theme.css": "./dist/voodo.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"build:lib": "npm run prepublish && mkdir -p build/lib && npm pack --pack-destination build/lib/",
"format": "prettier --write '**/*.{ts,tsx}'",
"format:check": "prettier --check '**/*.{ts,tsx}'",
"generate-tailwind-theme": "tsx utils/generate-color-classes.ts && tsx utils/generate-tailwind-theme.ts",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"patch": "npm version --commit-hooks false --git-tag-version false patch",
"prebuild": "npm run generate-tailwind-theme",
"prepublishOnly": "npm run build",
"test": "jest",
"type-check": "tsc --noEmit",
"validate:all": "npm run lint && npm run format:check && npm run type-check && npm run build && npm run test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.9",
"clsx": "^2.1.1",
"date-fns-tz": "^3.2.0",
"lodash.debounce": "^4.0.8",
"react-datepicker": "^9.1.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@mui/material": "^5.0.0",
"@mui/utils": "^5.0.0",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.7.4",
"@types/react": "^19.2.7",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"tailwindcss": "^4.1.17",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.6.2",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.5.0"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0"
}
}