Skip to content

Commit

Permalink
Merge pull request #2 from tcavenezuela/feature/api-package
Browse files Browse the repository at this point in the history
Add api package
  • Loading branch information
carl0shd authored Jan 21, 2024
2 parents 0dce60d + 1015fe6 commit 7a98cae
Show file tree
Hide file tree
Showing 29 changed files with 6,459 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/little-emus-behave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@simconnect.js/api': major
---

Add API package based on msfs-simconnect-api-wrapper from Pomax with several modifications
1 change: 1 addition & 0 deletions packages/api/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.14.2
57 changes: 57 additions & 0 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "@simconnect.js/api",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/tcavenezuela/simconnect.js/tree/master/packages/api#readme",
"bugs": {
"url": "https://github.com/tcavenezuela/simconnect.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcavenezuela/simconnect.js.git"
},
"license": "MIT",
"author": "Carlos Villalobos",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"src": "src"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "npx rimraf lib && tsc",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"simconnect.js": "^1.0.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"ts-node": "^10.8.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}
Loading

0 comments on commit 7a98cae

Please sign in to comment.