-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1008 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1008 Bytes
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
{
"name": "@solid-cli/create",
"version": "0.6.13",
"description": "Create Solid apps with low configuration",
"author": "Thomas Beer",
"contributors": [
"Rahul Batra"
],
"license": "MIT",
"homepage": "https://solid-cli.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/solidjs-community/solid-cli"
},
"keywords": [
"solidjs",
"solid",
"cli"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"start": "jiti ./src/bin.ts",
"build": "tsc && tsup",
"test": "vitest run"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"simple-git": "^3.32.2",
"@clack/prompts": "1.0.1",
"picocolors": "^1.1.1",
"@begit/core": "^0.3.4",
"citty": "^0.2.1",
"sucrase": "^3.35.1",
"@solid-cli/utils": "workspace:*"
}
}