Skip to content

Commit 4754d3d

Browse files
init
0 parents  commit 4754d3d

21 files changed

+5772
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
node_modules
5+
6+
# builds
7+
build
8+
dist
9+
10+
# misc
11+
.DS_Store
12+
.env
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
.cache
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
.vscode/settings.json

.prettierrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"singleQuote": true,
3+
"jsxSingleQuote": true,
4+
"semi": false,
5+
"useTabs": false,
6+
"tabWidth": 2,
7+
"bracketSpacing": true,
8+
"jsxBracketSameLine": false,
9+
"arrowParens": "always",
10+
"trailingComma": "none"
11+
}

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
cache: yarn
3+
node_js:
4+
- 12

lerna.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"version": "0.0.0",
3+
"npmClient": "yarn",
4+
"useWorkspaces": true,
5+
"packages": ["packages/*"]
6+
}

package.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "notion",
3+
"private": true,
4+
"description": "Focused TS packages for Notion's unofficial API, types, and related utilities.",
5+
"repository": "transitive-bullshit/notion",
6+
"author": "Travis Fischer <[email protected]>",
7+
"license": "MIT",
8+
"engines": {
9+
"node": ">=10"
10+
},
11+
"workspaces": [
12+
"packages/*"
13+
],
14+
"scripts": {
15+
"start": "run-s build:clean && tsc --build tsconfig.json --watch",
16+
"build": "run-s build:clean bootstrap && tsc --build tsconfig.json",
17+
"build:clean": "tsc --build tsconfig.json --clean",
18+
"dev": "run-s start",
19+
"fix": "run-s fix:*",
20+
"fix:prettier": "prettier '**/*.ts' --write",
21+
"fix:tslint": "tslint --fix --project .",
22+
"test": "run-s build test:*",
23+
"test:lint": "tslint --project . && prettier '**/*.ts' --check",
24+
"test:unit": "nyc -- ava -v",
25+
"clean": "git clean -dfqX -- ./node_modules **/{build,node_modules}/",
26+
"bootstrap": "lerna bootstrap",
27+
"publish": "lerna publish",
28+
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') < 0) throw new Error('this package requires yarn for development')\"",
29+
"postinstall": "run-s bootstrap"
30+
},
31+
"devDependencies": {
32+
"lerna": "^3.22.1",
33+
"npm-run-all": "^4.1.5",
34+
"prettier": "^2.0.5",
35+
"typescript": "^3.9.7"
36+
}
37+
}

packages/notion-types/package.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "notion-types",
3+
"version": "0.1.0",
4+
"description": "TypeScript types for core Notion data structures.",
5+
"repository": "transitive-bullshit/notion",
6+
"author": "Saasify <[email protected]>",
7+
"license": "MIT",
8+
"main": "build/index.js",
9+
"typings": "build/index.d.ts",
10+
"engines": {
11+
"node": ">=10"
12+
}
13+
}

packages/notion-types/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './types'

0 commit comments

Comments
 (0)