Skip to content

Commit 35e10ef

Browse files
authored
feat: initial commit
1 parent 7ebe03a commit 35e10ef

File tree

5 files changed

+69
-1
lines changed

5 files changed

+69
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# context-api-dev-tools-extension
1+
# Remote Context API - DevTools Extension
2+
3+
Port for [Redux Dev Tools Extension](https://github.com/zalmoxisus/remote-redux-devtools) now using Context API

package-lock.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "context-api-dev-tools-extension",
3+
"version": "1.0.0",
4+
"description": "Port for [Redux Dev Tools Extension](https://github.com/zalmoxisus/remote-redux-devtools) now using Context API",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/vip-git/context-api-dev-tools-extension.git"
12+
},
13+
"keywords": [
14+
"redux",
15+
"devtools",
16+
"contextAPI",
17+
"extension"
18+
],
19+
"author": "Vipin",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/vip-git/context-api-dev-tools-extension/issues"
23+
},
24+
"homepage": "https://github.com/vip-git/context-api-dev-tools-extension#readme",
25+
"devDependencies": {
26+
"typescript": "4.0.3"
27+
}
28+
}

tsconfig.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
9+
"allowJs": true,
10+
"skipLibCheck": true,
11+
"esModuleInterop": true,
12+
"allowSyntheticDefaultImports": true,
13+
"strict": true,
14+
"forceConsistentCasingInFileNames": true,
15+
"module": "esnext",
16+
"moduleResolution": "node",
17+
"resolveJsonModule": true,
18+
"isolatedModules": true,
19+
"noEmit": true,
20+
"jsx": "react"
21+
}
22+
}
23+

0 commit comments

Comments
 (0)