-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.2 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
{
"name": "node-i3x",
"private": true,
"packageManager": "npm@11.16.0",
"description": "TypeScript implementation of the i3X Beta specification — bridging OPC UA industrial automation to a modern REST API",
"license": "AGPL-3.0-or-later OR LicenseRef-Sterfive-Commercial",
"author": "Sterfive SAS <contact@sterfive.com> (https://sterfive.com)",
"homepage": "https://sterfive.com",
"repository": {
"type": "git",
"url": "git+https://github.com/node-opcua/node-i3x.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-i3x/issues",
"email": "contact@sterfive.com"
},
"funding": {
"type": "commercial",
"url": "https://sterfive.com"
},
"keywords": [
"opcua",
"opc-ua",
"opc ua",
"i3x",
"industrial",
"industry-4.0",
"iiot",
"iot",
"scada",
"mes",
"plc",
"rest-api",
"rest",
"fastify",
"automation",
"manufacturing",
"digital-twin",
"asset-management",
"sterfive"
],
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/core",
"packages/opcua-connector",
"packages/pseudo-session-connector",
"packages/rest-server",
"packages/app",
"packages/demo-embedded"
],
"scripts": {
"dev": "npm run dev -w packages/app",
"start": "npm run start -w packages/app",
"build": "turbo run build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "turbo run typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"release": "npm run build",
"readme:update": "node scripts/mermaid-to-img.mjs --write",
"bump": "node scripts/bump.mjs",
"ncu": "npx npm-check-updates -u --deep",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.9",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tsup": "^8.5.1",
"turbo": "^2.9.17",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"lint-staged": {
"*.{ts,json,md}": "biome check --write --no-errors-on-unmatched"
}
}