-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 743 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 743 Bytes
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
{
"name": "@bdbch/react-devto",
"version": "1.0.8",
"description": "Dev.to hooks for Github API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/bdbch/react-devto",
"author": "@d2k",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"keywords": [
"dev.to",
"hooks",
"github"
],
"files": [
"dist/**/*.*"
],
"scripts": {
"prepublish": "npm run build",
"start": "tsc --watch",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist"
},
"devDependencies": {
"@types/react": "^16.8.23",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.5.3"
}
}