-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "code-launcher",
"version": "1.3.35",
"description": "",
"author": "Stefan Ginev",
"license": "MIT",
"main": "dist/index.js",
"homepage": "http://github.com/choephix/code-launcher",
"bugs": "https://github.com/choephix/code-launcher/issues",
"bin": {
"code-launcher": "./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choephix/code-launcher.git"
},
"files": [
"dist",
"README.md"
],
"type": "commonjs",
"scripts": {
"start": "pnpm run build && node --trace-warnings ./dist/server.js",
"build": "pnpm -r --filter @code-launcher/client-with-vite run build && pnpm --filter @code-launcher/server-with-fastify run build",
"dev": "pnpm --filter @code-launcher/client-with-vite --filter @code-launcher/server-with-fastify run dev",
"prepublishOnly": "pnpm run build",
"update:all": "pnpm update --recursive --latest"
},
"keywords": [],
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 120,
"bracketSpacing": true,
"arrowParens": "avoid"
}
}