forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 KB
/
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
43
44
45
46
47
48
49
{
"name": "create-svelte",
"version": "3.3.0",
"description": "A CLI for creating new SvelteKit projects",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/kit",
"directory": "packages/create-svelte"
},
"license": "MIT",
"homepage": "https://kit.svelte.dev",
"bin": "./bin.js",
"main": "./index.js",
"dependencies": {
"@clack/prompts": "^0.6.3",
"kleur": "^4.1.5"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@types/gitignore-parser": "^0.0.0",
"@types/prettier": "^2.7.1",
"@types/prompts": "^2.4.1",
"gitignore-parser": "^0.0.2",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"sucrase": "^3.29.0",
"svelte": "^3.56.0",
"tiny-glob": "^0.2.9",
"uvu": "^0.5.6"
},
"scripts": {
"build": "node scripts/build-templates",
"test": "pnpm build && uvu test",
"check": "tsc",
"lint": "prettier --check . --config ../../.prettierrc --ignore-path ../../.gitignore --ignore-path .gitignore --plugin prettier-plugin-svelte --plugin-search-dir=.",
"format": "pnpm lint --write",
"prepublishOnly": "pnpm build",
"postpublish": "echo \"Updating template repo\" && bash ./scripts/update-template-repo.sh"
},
"files": [
"index.js",
"dist",
"bin.js",
"utils.js",
"types"
],
"types": "types/index.d.ts",
"type": "module"
}