-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
32 lines (32 loc) · 1000 Bytes
/
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
{
"name": "flyde",
"version": "0.105.2",
"main": "index.js",
"description": "",
"proxy": "http://localhost:8484",
"scripts": {
"start": "pnpm run open-vscode",
"open-vscode": "code main.code-workspace",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm -r --stream --parallel run dev",
"build": "pnpm run -r build",
"test": "pnpm run -r test",
"lint": "pnpm run -r lint",
"clean": "pnpm run -r -y",
"clean-dist": "pnpm exec -r \"rm -rf dist\"",
"bump-all-patch": "pnpm -r version patch",
"bump-all-minor": "pnpm -r version minor",
"publish-all": "./publish-all-with-otp.sh",
"release": "pnpm run build && pnpm run bump-all-patch && pnpm run publish-all",
"bump:minor": "tsx updateVersions.ts minor",
"bump:patch": "tsx updateVersions.ts patch"
},
"author": "",
"dependencies": {
"concurrently": "^4.1.2",
"mixpanel-browser": "^2.47.0",
"tsx": "^4.7.1"
},
"private": true,
"packageManager": "pnpm@8.3.1"
}