-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.07 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
{
"name": "@hotosm/ui",
"version": "0.2.0-b5",
"description": "Shared UI components with HOT theming.",
"homepage": "https://github.com/hotosm/ui#readme",
"author": {
"name": "HOTOSM",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joe",
"url": "https://github.com/joltcode"
},
{
"name": "Emilio Mariscal",
"url": "https://github.com/emi420"
},
{
"name": "Deepak Pradhan",
"url": "https://github.com/varun2948"
},
{
"name": "Sam Woodcock",
"url": "https://github.com/spwoodcock"
}
],
"license": "AGPL-3.0-only",
"type": "module",
"types": "dist/hotosm-ui.d.ts",
"exports": {
".": {
"types": "./dist/hotosm-ui.d.ts",
"import": "./dist/hotosm-ui.js"
},
"./dist/hotosm-ui.js": "./dist/hotosm-ui.js",
"./dist/components/*": "./dist/components/*",
"./dist/react": "./dist/react/index.js",
"./dist/themes/*": "./dist/themes/*",
"./dist/react/*": "./dist/react/*",
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hotosm/ui.git"
},
"scripts": {
"dev": "storybook dev -p 3001 --no-open",
"build": "node scripts/build.js && npm run build-themes && npm run build-assets",
"build-themes": "cp -R src/themes dist && cp src/style.css dist",
"build-assets": "cp -R src/assets dist"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.17.1",
"@lit/react": "^1.0.0",
"class-variance-authority": "^0.7.0",
"lit": "^3.0.0"
},
"devDependencies": {
"@storybook/blocks": "^8.3.5",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/web-components": "^8.2.9",
"@storybook/web-components-vite": "^8.2.9",
"@types/react": "^18.2.28",
"globby": "^14.0.2",
"del": "^7.1.0",
"esbuild": "^0.19.4",
"react": "^18.2.0",
"storybook": "^8.2.9",
"typescript": "^5.2.2",
"user-agent-data-types": "^0.3.1"
}
}