-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
55
56
57
58
59
60
61
{
"name": "notion-node",
"description": "Fast and accurate React renderer for Notion. TS batteries included.",
"repository": "texonom/notion-node",
"author": "Seonglae Cho <sungle3737@gmail.com>",
"license": "MIT",
"version": "1.5.10",
"engines": {
"node": ">=20.20.2"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"prepare": "husky install",
"link": "turbo link",
"build": "turbo run build",
"dev": "turbo watch",
"clean": "rm -rf packages/*/build packages/*/.turbo node_modules/.cache",
"test": "vitest --run",
"coverage": "vitest --run --coverage",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"**/*.{ts,tsx}\" --fix --ignore-path .gitignore --cache",
"format": "prettier \"**/*.{js,json,md,css,js,ts,tsx}\" --write --ignore-path .gitignore",
"prerelease": "standard-version -a -t '' --skip.changelog --prerelease",
"release": "standard-version -a -t '' --release-as",
"pu": "turbo pu -- --access=public --no-git-checks"
},
"devDependencies": {
"@types/node": "^22.19.17",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "10.2.1",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.7",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"standard-version": "^9.5.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.5"
},
"standard-version": {
"scripts": {
"precommit": "git add .",
"postchangelog": "pnpm format"
},
"skip": {
"changelog": true,
"commit": true,
"tag": true
}
}
}