-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 KB
/
package.json
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
{
"name": "tailwind-shaders",
"license": "MIT",
"version": "0.2.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
},
"./themes": {
"types": "./dist/themes/radix-colors.d.ts",
"import": "./dist/themes/radix-Colors.mjs",
"require": "./dist/themes/radix-colors.js"
}
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts src/react/index.ts src/themes/radix-colors.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"test": "vitest",
"lint": "tsc"
},
"keywords": [],
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/react": "^18.2.48",
"react": "^18.2.0",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"author": "johnpaulkiser",
"dependencies": {
"@radix-ui/colors": "^3.0.0"
}
}