forked from mathieudutour/gatsby-digital-garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 906 Bytes
/
package.json
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
{
"name": "gatsby-source-roamresearch",
"version": "0.4.1",
"description": "Source plugin for pulling data into Gatsby from Roam Research",
"main": "index.js",
"scripts": {
"build": "npm run clean && ../../node_modules/.bin/tsc -p ./tsconfig.json",
"watch": "npm run build -- --watch",
"clean": "rm -rf lib",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"gatsby",
"source",
"roam",
"roamresearch"
],
"files": [
"index.js",
"gatsby-node.js",
"lib"
],
"author": "Mathieu Dutour <[email protected]>",
"repository": {
"url": "https://github.com/mathieudutour/gatsby-digital-garden",
"directory": "packages/gatsby-source-roamresearch"
},
"license": "MIT",
"dependencies": {
"fetch-roamresearch": "^0.1.2"
},
"devDependencies": {
"@types/react-dom": "^16.9.8",
"gatsby": "^2.21.26"
}
}