-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 913 Bytes
/
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
{
"name": "@casual-ui/utils",
"description": "The utility functions for Casual UI",
"version": "0.0.3",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./src/index.ts"
},
"types": "./src/index.ts",
"publishConfig": {
"exports": {
".": {
"types": "dist/index.d.ts",
"import": "dist/index.mjs"
}
}
},
"scripts": {
"build": "unbuild",
"release": "changeset publish"
},
"devDependencies": {
"@casual-ui/eslint-config-typescript": "^0.4.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"eslint": "^8.45.0",
"typescript": "^5.1.6",
"unbuild": "^1.2.1"
},
"dependencies": {
"@floating-ui/dom": "^1.4.5"
},
"author": {
"email": "[email protected]",
"name": "Dongsheng Zhao"
},
"repository": {
"url": "https://github.com/Blackman99/casual-ui.git"
}
}