forked from NotionX/react-notion-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 KB
/
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
38
39
40
41
42
43
{
"name": "notion",
"private": true,
"description": "Fast and accurate React renderer for Notion. TS batteries included.",
"repository": "NotionX/react-notion-x",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/*",
"example/"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"start": "tsc --build tsconfig.json --watch",
"prebuild": "run-s clean",
"prestart": "run-s clean",
"clean": "del packages/*/build",
"dev": "run-s start",
"pretest": "run-s build",
"test": "run-s test:*",
"test:unit": "lerna run test",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"docs": "run-s docs:extract docs:generate",
"docs:extract": "lerna exec --ignore react-notion-x --ignore notion-x-example api-extractor run",
"docs:generate": "api-documenter markdown -i build -o docs",
"bootstrap": "lerna bootstrap",
"publish": "lerna publish",
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') < 0) throw new Error('this package requires yarn for development')\"",
"postinstall": "run-s bootstrap"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.28",
"@microsoft/api-extractor": "7.8.2-pr1796.0",
"del-cli": "^3.0.1",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
}
}