-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.22 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.22 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
{
"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 tsgo"
},
"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.4.4",
"@bifravst/prettier-config": "1.1.17",
"@commitlint/config-conventional": "20.5.0",
"@swc/register": "0.1.10",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260309.1",
"@vitejs/plugin-react-swc": "^4.3.0",
"commitlint": "20.5.0",
"eslint-plugin-react": "7.37.5",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.7",
"tsx": "4.21.0",
"vite": "7.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"dependencies": {
"react": "19.2.4",
"react-dom": "19.2.4"
},
"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"
}