-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "@s-group/react-usercentrics",
"version": "3.1.0",
"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",
"lint": "oxfmt && oxlint",
"test": "vitest",
"typecheck": "tsc --project tsconfig.json",
"build": "tsc --project tsconfig.build.json",
"changeset": "changeset",
"changeset:tag": "changeset tag",
"changeset:version": "changeset version && npm i --package-lock-only && git commit -am \"chore(changeset): release\""
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0",
"@changesets/cli": "3.0.1",
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@testing-library/react": "16.3.2",
"@types/node": "26.4.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"happy-dom": "20.11.8",
"husky": "9.1.7",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"react": "19.2.8",
"react-dom": "19.2.8",
"typescript": "7.0.2",
"vitest": "4.1.11"
},
"peerDependencies": {
"react": ">=16.14",
"react-dom": ">=16.14"
}
}