-
-
Notifications
You must be signed in to change notification settings - Fork 644
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "notion",
"private": true,
"description": "Fast and accurate React renderer for Notion. TS batteries included.",
"repository": "NotionX/react-notion-x",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"version": "7.10.0",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"build": "turbo build --filter='./packages/*'",
"dev": "turbo dev --concurrency 50 --continue --filter='./packages/*'",
"clean": "turbo clean",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint .",
"test:typecheck": "turbo test:typecheck",
"test:unit": "turbo test:unit",
"release": "bumpp -r && pnpm publish -r",
"pretest": "run-s build",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@fisch0920/config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"del-cli": "catalog:",
"eslint": "^9.39.4",
"npm-run-all2": "catalog:",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"simple-git-hooks": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"prettier": "@fisch0920/config/prettier",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
]
}
}