This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "create-skittle",
"version": "0.1.2",
"description": "A powerful fork of create-svelte with added features and options",
"keywords": [
"create",
"new",
"project",
"starter",
"svelte",
"sveltekit",
"template",
"wizard"
],
"repository": {
"type": "git",
"url": "https://github.com/cowboycodr/skittle.git"
},
"publishConfig": {
"@cowboycodr:registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"homepage": "https://kit.svelte.dev",
"bin": "./bin.js",
"main": "./index.js",
"dependencies": {
"@clack/prompts": "^0.7.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/gitignore-parser": "^0.0.3",
"gitignore-parser": "^0.0.2",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sucrase": "^3.34.0",
"svelte": "^4.2.10",
"tiny-glob": "^0.2.9",
"typescript": "^5.3.3",
"vitest": "^2.0.1"
},
"scripts": {
"build": "node scripts/build-templates",
"test": "pnpm build && vitest run",
"check": "tsc",
"lint": "prettier --check . --config ../../.prettierrc --ignore-path ../../.gitignore --ignore-path .gitignore",
"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"
}