-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.61 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
91
92
93
94
95
96
97
98
{
"name": "@hotosm/ui",
"version": "0.1.0",
"description": "Shared UI components with theming for use across HOTOSM tools.",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"engines": {
"node": ">=14.17"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.ts ./",
"dev": "storybook dev -p 3001",
"build": "vite build",
"serve": "vite preview",
"build:docstrings": "wca analyze 'src/**/*.{js,ts}' --outDir 'docs/components' --format 'markdown'",
"build:stories": "storybook build --output-dir=docs/stories",
"build:docs": "pnpm run build:docstrings && pnpm run build:stories"
},
"keywords": [],
"author": {
"name": "HOTOSM",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joe",
"url": "https://github.com/joltcode"
},
{
"name": "Emi Mariscal",
"url": "https://github.com/emi420"
},
{
"name": "Deepak Pradhan",
"url": "https://github.com/varun2948"
},
{
"name": "Sam Woodcock",
"url": "https://github.com/spwoodcock"
}
],
"license": "GPL-3.0-only",
"devDependencies": {
"@storybook/addon-essentials": "^7.6.5",
"@storybook/addon-links": "^7.6.5",
"@storybook/blocks": "^7.6.5",
"@storybook/web-components": "^7.6.5",
"@storybook/web-components-vite": "^7.6.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@unocss/postcss": "^0.58.5",
"autoprefixer": "^10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-lit": "^1.10.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-wc": "^2.0.4",
"lit": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.5",
"tsup": "^7.2.0",
"type-fest": "^4.8.3",
"typescript": "^5.2.2",
"unocss": "^0.58.0",
"vite": "^5.0.7",
"vite-tsconfig-paths": "^4.2.2",
"web-component-analyzer": "^2.0.0"
},
"dependencies-comments": {
"react": "Required for Storybook",
"react-dom": "Required for Storybook"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotosm/ui.git"
},
"bugs": {
"url": "https://github.com/hotosm/ui/issues"
},
"homepage": "https://github.com/hotosm/ui#readme",
"dependencies": {
"postcss-cli": "^11.0.0"
}
}