-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.82 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.82 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
62
63
64
65
66
67
68
69
{
"name": "vue-notion-monorepo",
"private": true,
"description": "Fast and accurate Vue renderer for Notion. TS batteries included.",
"repository": "slogvo/vue-notion",
"author": "vue-notion",
"license": "MIT",
"version": "0.1.2",
"packageManager": "pnpm@10.26.0",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=\"example-*\" --filter=\"@slogvo/*\"",
"dev:examples": "pnpm --filter example-examples dev",
"dev:docs": "pnpm --filter example-docs dev",
"start": "pnpm dev",
"clean": "turbo clean",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,vue}\"",
"test:lint": "turbo test:lint",
"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": {
"@types/node": "^22.10.5",
"@vue/tsconfig": "catalog:",
"bumpp": "^9.7.1",
"del-cli": "^6.0.0",
"eslint": "^9.17.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-vue": "^10.7.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.12.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.0",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.1.10"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,vue}": [
"prettier --ignore-unknown --write"
]
},
"dependencies": {
"notion-client": "^7.7.3"
}
}