-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.82 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
{
"name": "@lcui/react",
"version": "0.6.0",
"type": "module",
"description": "A React library for LCUI development",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./widgets": {
"types": "./lib/widgets/index.d.ts",
"import": "./lib/widgets/index.js"
},
"./compiler": {
"types": "./lib/compiler/index.d.ts",
"import": "./lib/compiler/index.js"
},
"./runtime": {
"types": "./lib/runtime/index.d.ts",
"import": "./lib/runtime/index.js"
},
"./jsx-runtime": {
"types": "./lib/compiler/jsx-runtime.d.ts",
"import": "./lib/compiler/jsx-runtime.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"widgets": [
"./lib/widgets/index.d.ts"
],
"compiler": [
"./lib/compiler/index.d.ts"
],
"runtime": [
"./lib/runtime/index.d.ts"
],
"jsx-runtime": [
"./lib/compiler/jsx-runtime.d.ts"
]
}
},
"files": [
"lib",
"types.d.ts",
"README.md",
"README.zh-cn.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lcui-dev/lcui-toolkit.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/lcui-dev/lcui-toolkit/issues"
},
"homepage": "https://github.com/lcui-dev/lcui-toolkit/tree/develop/packages/react#readme",
"author": "Liu <lc-soft@live.cn>",
"license": "MIT",
"dependencies": {
"change-case-all": "^2.1.0",
"react": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"keywords": [
"lcui",
"react"
]
}