-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.91 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
{
"name": "@s-group/react-usercentrics",
"version": "3.0.6",
"description": "React utils for interacting with the Usercentrics Web CMP v3",
"bugs": "https://github.com/s-group-dev/react-usercentrics/issues",
"license": "MIT",
"author": "Iiro Jäppinen <iiro.jappinen@sok.fi>",
"repository": {
"type": "git",
"url": "git+https://github.com/s-group-dev/react-usercentrics.git"
},
"files": [
"dist/",
"augmented.d.ts",
"MIGRATION.md"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"prepare": "husky",
"fmt": "oxfmt",
"lint": "oxlint",
"test": "vitest",
"typecheck": "tsc --project tsconfig.json",
"build": "tsc --project tsconfig.build.json"
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.8",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@testing-library/react": "16.3.2",
"@types/node": "25.9.1",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"conventional-changelog-conventionalcommits": "9.3.1",
"happy-dom": "20.9.0",
"husky": "9.1.7",
"oxfmt": "0.53.0",
"oxlint": "1.68.0",
"oxlint-tsgolint": "0.23.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"semantic-release": "25.0.3",
"typescript": "6.0.3",
"vitest": "4.1.8"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
}