-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"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": "pnpm build && cd packages/create-solid && pnpm start",
"format": "prettier --write .",
"watch:build": "turbo watch build",
"update-deps": "ncu -u --packageFile packages/**/package.json"
},
"contributors": [
{
"name": "Thomas Beer"
},
{
"name": "Rahul Batra"
}
],
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@types/node": "25.2.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"@changesets/cli": "2.29.8",
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"vitest": "^4.0.18",
"jiti": "^2.6.1"
},
"packageManager": "pnpm@10.30.0",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild"
]
}
}