forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "create-svelte",
"version": "2.0.0-next.131",
"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": {
"kleur": "^4.1.4",
"prompts": "^2.4.2"
},
"devDependencies": {
"@playwright/test": "^1.21.0",
"@sveltejs/kit": "workspace:*",
"@types/gitignore-parser": "^0.0.0",
"@types/prettier": "^2.4.2",
"@types/prompts": "^2.0.14",
"gitignore-parser": "^0.0.2",
"prettier": "^2.5.0",
"prettier-plugin-svelte": "^2.5.0",
"sucrase": "^3.20.3",
"svelte": "^3.44.2",
"svelte-preprocess": "^4.9.8",
"tiny-glob": "^0.2.9"
},
"scripts": {
"build": "node scripts/build-templates",
"check": "tsc",
"lint": "eslint --ignore-path .gitignore --ignore-path ../../.gitignore \"./*.js\" && npm run check-format",
"format": "npm run check-format -- --write",
"check-format": "prettier --check . --config ../../.prettierrc --ignore-path ../../.gitignore --ignore-path .gitignore --plugin prettier-plugin-svelte --plugin-search-dir=.",
"prepublishOnly": "npm run build",
"postpublish": "echo \"Updating template repo\" && bash ./scripts/update-template-repo.sh"
},
"files": [
"index.js",
"dist",
"bin.js",
"utils.js"
],
"type": "module"
}