-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.93 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
{
"name": "@gratio/ui",
"version": "1.2.2",
"author": "Gratio",
"license": "MIT",
"type": "module",
"main": "./build/components.cjs",
"types": "./build/components.d.ts",
"module": "./build/components.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gratio-tech/UI.git"
},
"exports": {
".": {
"import": {
"types": "./build/components.d.ts",
"default": "./build/components.js"
},
"require": "./build/components.cjs"
},
"./shared": {
"import": {
"types": "./build/shared.d.ts",
"default": "./build/shared.js"
},
"require": "./build/shared.cjs"
}
},
"scripts": {
"dev": "vite --host",
"build": "npm run style && vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"style": "prettier --write src/**/*.ts* --cache -l",
"prepare": "git config core.hooksPath ./.github/.hooks || echo 'Not in a git repo'"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vanicom": "^1.3.6"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^5.x.x",
"clsx": "^2.1.1",
"prettier": "^3.5.3",
"sass": "^1.92.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vanicom": "^1.3.6",
"typescript": "^5.0.0",
"vite": "^7.x.x",
"vite-plugin-css-injected-by-js": "^3.5.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svg-sprite": "^0.6.2",
"vite-plugin-svgr": "^4.x.x",
"vite-tsconfig-paths": "^5.1.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 140,
"quoteProps": "consistent",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid"
},
"keywords": [
"components",
"ui",
"framework"
]
}