-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.33 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.33 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
{
"name": "node-simconnect",
"version": "4.2.0",
"description": "A SimConnect client library for Node.JS.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npx rimraf dist && tsc -p tsconfig.build.json",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests utils",
"lint:fix": "eslint src tests utils --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"link": "npm run build && cd dist && npm link",
"precommit": "lint-staged",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky",
"generate-api-reference": "typedoc src/index.ts --tsconfig tsconfig.typedoc.json",
"clean": "npx rimraf dist"
},
"author": "Even Arneberg Rognlien",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/EvenAR/node-simconnect.git"
},
"keywords": [
"FSX",
"P3D",
"SDK",
"SimConnect",
"Prepar3D",
"FlightSimulator",
"Simulator"
],
"bugs": {
"url": "https://github.com/EvenAR/node-simconnect/issues"
},
"homepage": "https://github.com/EvenAR/node-simconnect#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.7",
"@types/ini": "^1.3.30",
"@types/jest": "^29.2.4",
"@types/node": "^25.6.2",
"eslint": "^10.3.0",
"eslint-plugin-prettier": "^5.5.5",
"jiti": "latest",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^29.3.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"pretty-quick": "^3.1.0",
"ts-jest": "^29.4.1",
"typedoc": "^0.28.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"debug": "^4.3.4",
"ini": "^2.0.0",
"regedit": "^5.1.1"
},
"engines": {
"node": ">=20.17.0",
"npm": ">=10.0.0"
},
"files": [
"/dist",
"/samples",
"./package.json",
"./README.md",
"./LICENSE"
]
}