Skip to content

Commit fe39174

Browse files
Initial version
0 parents  commit fe39174

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+6264
-0
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
node_modules/
2+
npm-debug.log*
3+
yarn-debug.log*
4+
yarn-error.log*
5+
package-lock.json
6+
yarn.lock
7+
dist/
8+
build/
9+
*.tsbuildinfo
10+
linkedapi-node-*.tgz
11+
# Environment variables
12+
.env
13+
.env.json
14+
15+
# IDE
16+
.idea/
17+
*.swp
18+
*.swo
19+
20+
# OS
21+
.DS_Store
22+
Thumbs.db
23+
24+
# Logs
25+
logs
26+
*.log
27+
28+
# Coverage
29+
coverage/
30+
.nyc_output
31+
32+
# Test
33+
.jest/

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
npm run format
2+
npm run lint
3+
npm run build
4+
git add -u

.npmignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Source files
2+
src/
3+
*.ts
4+
!*.d.ts
5+
6+
# Development files
7+
.eslintrc.js
8+
jest.config.js
9+
rollup.config.js
10+
tsconfig.json
11+
12+
# Tests
13+
**/*.test.ts
14+
**/*.spec.ts
15+
__tests__/
16+
17+
# Development dependencies
18+
node_modules/
19+
20+
# IDE
21+
.vscode/
22+
.idea/
23+
.cursor/
24+
.claude/
25+
26+
# OS
27+
.DS_Store
28+
Thumbs.db
29+
30+
# Logs
31+
*.log
32+
33+
# Coverage
34+
coverage/

.vscode/settings.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"editor.tabSize": 2,
3+
"editor.formatOnType": true,
4+
"editor.formatOnPaste": true,
5+
"editor.formatOnSave": true,
6+
"files.autoSave": "afterDelay",
7+
"editor.inlineSuggest.enabled": true,
8+
"editor.defaultFormatter": "esbenp.prettier-vscode",
9+
"editor.rulers": [100],
10+
"editor.wordWrapColumn": 100,
11+
"typescript.updateImportsOnFileMove.enabled": "never",
12+
"javascript.updateImportsOnFileMove.enabled": "never",
13+
"typescript.preferences.importModuleSpecifier": "non-relative",
14+
"javascript.preferences.importModuleSpecifier": "non-relative",
15+
"material-icon-theme.activeIconPack": "nest",
16+
"typescript.tsserver.maxTsServerMemory": 8192,
17+
"typescript.tsdk": "node_modules/typescript/lib"
18+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Linked API <https://linkedapi.io>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)