-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.54 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.54 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
{
"name": "@hello.nrfcloud.com/proto",
"version": "0.0.0-development",
"description": "Documents the communication protocol between the hello.nrfcloud.com backend and the web application",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./export.js"
},
"./fingerprint": {
"default": "./dist/fingerprint/export.js",
"types": "./fingerprint/index.d.ts"
},
"./hello": {
"default": "./dist/hello/export.js",
"types": "./hello/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/proto.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/proto/issues"
},
"homepage": "https://hello.nrfcloud.com",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"hello-nrfcloud"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"prepare": "husky",
"test": "find ./ -type f -name *.spec.ts -not -path './node_modules/*' | xargs npx tsx --test --test-reporter spec",
"prepublishOnly": "./compile.sh"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.4.4",
"@bifravst/prettier-config": "1.1.17",
"@commitlint/config-conventional": "20.5.0",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.30",
"@types/glob": "9.0.0",
"@types/node": "24.9.1",
"chalk": "5.6.2",
"glob": "11.1.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"nock": "14.0.13",
"tsx": "4.21.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
]
},
"prettier": "@bifravst/prettier-config",
"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
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"export.js",
"index.d.ts",
"dist",
"nrfCloud",
"hello",
"fingerprint",
"validator",
"schemas",
"generate"
],
"peerDependencies": {
"@hello.nrfcloud.com/proto-map": "^16.6.47",
"@sinclair/typebox": "^0.34.49",
"ajv": "^8.18.0",
"jsonata": "^2.1.0"
}
}