-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.65 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "backan-monorepo",
"private": true,
"description": "All in one web API builder. Create endpoints with type validations and OpenApi documentation, safely and quickly.",
"keywords": [
"backend",
"api",
"rest-api",
"api-rest",
"openapi",
"library",
"node",
"server",
"js",
"ts"
],
"homepage": "https://backan.pigeonposse.com/",
"bugs": {
"url": "https://github.com/pigeonposse/backan/issues",
"email": "dev@pigeonposse.com"
},
"repository": {
"type": "git",
"url": "https://github.com/pigeonposse/backan"
},
"funding": {
"type": "individual",
"url": "https://pigeonposse.com/?popup=donate"
},
"license": "GPL-3.0",
"author": {
"name": "Angelo",
"email": "angelo@pigeonposse.com",
"url": "https://github.com/angelespejo"
},
"contributors": [
{
"name": "Alejo",
"email": "alejo@pigeonposse.com",
"url": "https://github.com/alejomalia"
}
],
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"+": "pnpm -F $@",
"++": "run() { pnpm -F @*/\"${@:1}\"; }; run $@",
".": "dovenv",
"build": "pnpm run --sequential \"/build:.*/\"",
"build-assets": "dovenv docs generate-assets --flag=\"--preset minimal\" --flag=\"docs/public/logo.png\"",
"build:1": "pnpm --filter core build && pnpm --filter backan build",
"build:2": "pnpm --filter server build && pnpm --filter builder build && pnpm --filter client build",
"build:create": "pnpm --filter create-backan build",
"build:docs": "pnpm --filter docs build",
"prepare": "dovenv git husky --silent",
"test": "pnpm run --sequential \"/test:.*/\"",
"test:check-ws": "dovenv check --silent",
"test:pkgs": "pnpm -F '*backan*' run check && pnpm -F '*sizium*' run test",
"test:transform-ws": "dovenv transform --silent",
"test:unit": "vitest run src --passWithNoTests"
},
"devDependencies": {
"@backan/config": "workspace:*",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@dovenv/core": "1.2.2",
"@dovenv/theme-pigeonposse": "1.2.2",
"@playwright/test": "1.49.1",
"@types/node": "22.10.6",
"rimraf": "6.0.1",
"tslib": "2.8.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"unbuild": "3.3.1",
"vite": "6.0.7",
"vite-plugin-dts": "4.5.0",
"vitest": "2.1.8"
},
"packageManager": "pnpm@9.11.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.10.0"
},
"extra": {
"id": "backan",
"shortDesc": "All in one web API builder",
"productName": "Backan",
"libraryUrl": "https://www.npmjs.com/package/backan",
"libraryId": "backan",
"repoId": "backan",
"rawRepoUrl": "https://raw.githubusercontent.com/pigeonposse/backan",
"docsUrl": "https://backan.pigeonposse.com",
"changelogURL": "https://github.com/pigeonposse/backan/blob/main/packages/backan/CHANGELOG.md",
"contributingURL": "https://github.com/pigeonposse/.github/blob/main/CONTRIBUTING.md",
"licenseUrl": "https://github.com/pigeonposse/backan/blob/main/LICENSE",
"collective": {
"id": "pigeonposse",
"name": "PigeonPosse",
"funding": "https://pigeonposse.com/?popup=donate",
"gh": "https://github.com/pigeonposse",
"about": "https://pigeonposse.com?popup=about",
"url": "https://pigeonposse.com",
"web": "https://pigeonposse.com",
"email": "dev@pigeonposse.com",
"socialUser": {
"twitter": "pigeonposse_",
"instagram": "pigeon.posse",
"medium": "pigeonposse"
},
"social": {
"twitter": "https://twitter.com/pigeonposse_",
"instagram": "https://www.instagram.com/pigeon.posse/",
"medium": "https://medium.com/@pigeonposse"
}
}
},
"pnpm": {
"overrides": {
"jpeg-js@<0.4.4": ">=0.4.4",
"jpeg-js@<0.4.0": ">=0.4.0",
"phin@<3.7.1": ">=3.7.1",
"tough-cookie@<4.1.3": ">=4.1.3"
}
}
}