-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.39 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@emd-cloud/react-components",
"type": "module",
"version": "1.17.0",
"description": "Use the EMD Cloud components with one package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"tsconfig.json",
"package.json"
],
"scripts": {
"test": "vitest --watch=false",
"test:types": "vitest run --typecheck",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:coverage:watch": "vitest watch --coverage",
"test:coverage:ui": "vitest run --coverage --ui",
"build": "rimraf dist && rollup -c rollup.config.js",
"typecheck": "tsc --noEmit",
"prettier:formatting": "npx prettier --write ./src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"react-component"
],
"author": "Okulus Monteko",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EMD-Cloud/react-components.git"
},
"bugs": {
"url": "https://github.com/EMD-Cloud/react-components/issues"
},
"peerDependencies": {
"@emd-cloud/sdk": "^1.15.0",
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19",
"tus-js-client": "^4.3.1",
"uuid": "^13.0.0"
},
"release": {
"branches": [
"main"
],
"repositoryUrl": "https://github.com/EMD-Cloud/react-components.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@chromatic-com/storybook": "^4.1.1",
"@emd-cloud/sdk": "^1.15.0",
"@eslint/js": "^9.12.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@storybook/addon-docs": "^9.1.4",
"@storybook/addon-onboarding": "^9.1.4",
"@storybook/react-vite": "^9.1.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^4.0.5",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^9.1.4",
"globals": "^15.11.0",
"happy-dom": "^20.0.10",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"storybook": "^9.1.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vitest": "^4.0.5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}