-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.16 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
{
"name": "@bifravst/rsrp-bar",
"version": "0.0.0-development",
"description": "React component to render an RSRP bar or a failover icon in case the reported value is not valid",
"scripts": {
"lint": "eslint src/**",
"test": "npx tsx --test ./src/*.spec.ts",
"prepare": "husky",
"start": "vite",
"prepublishOnly": "npx tsc"
},
"type": "module",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"node": "./dist/index.js"
}
},
"homepage": "https://github.com/bifravst/rsrp-bar",
"keywords": [
"rsrp",
"react",
"iot"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/rsrp-bar.git"
},
"bugs": {
"url": "https://github.com/bifravst/rsrp-bar/issues"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.21",
"@bifravst/prettier-config": "1.1.8",
"@commitlint/config-conventional": "19.8.0",
"@swc/register": "0.1.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"commitlint": "19.8.0",
"eslint-plugin-react": "7.37.4",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.2",
"tsx": "4.19.3",
"vite": "6.2.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"files": [
"README.md",
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"prettier": "@bifravst/prettier-config"
}