-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 930 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
33
34
35
36
37
38
39
40
41
42
{
"name": "solid-cli",
"private": true,
"version": "0.0.1",
"description": "A CLI for making the SolidJS development experience easier, faster, and less error prone.",
"license": "MIT",
"homepage": "https://solid-cli.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/solidjs-community/solid-cli"
},
"scripts": {
"test": "vitest run",
"test:all": "turbo run test",
"build": "turbo run build",
"release": "pnpm build && changeset publish",
"start": "cd packages/core && pnpm start",
"format": "prettier --write .",
"watch:build": "turbo watch build"
},
"contributors": [
{
"name": "Thomas Beer"
},
{
"name": "Rahul Batra"
}
],
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@changesets/cli": "2.27.11",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"vitest": "^3.0.2"
},
"packageManager": "[email protected]",
"dependencies": {
"jiti": "^2.4.2"
}
}