-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
90 lines (90 loc) · 2.18 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
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
{
"name": "@ranui/react",
"version": "0.1.5-alpha.5",
"description": "UI Component library based on `Web Component`",
"main": "dist/umd/index.umd.cjs",
"module": "dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"homepage": "https://chaxus.github.io/ran/src/ranui-react/",
"repository": {
"type": "git",
"url": "git+https://github.com/chaxus/ran",
"directory": "packages/ranui-react"
},
"bugs": {
"url": "https://github.com/chaxus/ran/issues"
},
"author": "chaxus",
"license": "MIT",
"engines": {
"node": "^16.20.2 || >=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "sh ./bin/build.sh",
"prepublish": "npm run build",
"test": "sh ./bin/test.sh",
"test:report": "playwright show-report",
"test:ui": "playwright test --ui",
"preview": "vite preview --port=30104 --strictPort",
"fed": "sh ./bin/federation.sh",
"tsc": "tsc --noEmit"
},
"files": [
"dist",
"typings.d.ts"
],
"keywords": [
"ran",
"component",
"components",
"ui",
"design",
"react",
"ranui",
"@ranui/react",
"web-components",
"web components",
"webComponents"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/umd/index.umd.cjs"
},
"./shadowless": {
"types": "./dist/index.d.ts",
"import": "./dist/shadowless/shadowless/index.js",
"require": "./dist/umd/shadowless/shadowless.umd.cjs"
},
"./style": {
"types": "./dist/index.d.ts",
"import": "./dist/style.css",
"require": "./dist/umd/index.umd.cjs"
}
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@originjs/vite-plugin-federation": "^1.3.5",
"@playwright/test": "^1.44.0",
"@types/react": "^18.3.1",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^2.8.8",
"react-dom": "^18.3.1",
"tsx": "^4.9.3",
"vite": "^5.2.11",
"typescript": "^5.4.5"
},
"dependencies": {
"ranui": "workspace:^",
"ranuts": "workspace:^",
"react": "^18.3.1"
}
}