-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.06 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
{
"name": "create-svelte-with-args",
"version": "6.4.0",
"description": "A small CLI wrapper around the create-svelte package that enables you to replace the interactive prompts with CLI arguments.",
"keywords": [
"svelte",
"create-svelte",
"cli"
],
"repository": "git@github.com:storybookjs/create-svelte-with-args.git",
"license": "MIT",
"author": "Jeppe Reinhold <jeppe@chromatic.com>",
"type": "module",
"bin": "dist/bin.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"check-all": "npm-run-all --aggregate-output --print-label --parallel format:check type-check start:**",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "auto shipit",
"start": "node ./dist/bin.js",
"start-all": "npm-run-all --aggregate-output --print-label build --parallel start:**",
"start:default": "pnpm start --name=default --template=default --types=checkjs --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5",
"start:dry": "pnpm start:default --dry",
"start:maxi": "pnpm start --name=maxi --template=default --types=typescript --prettier --eslint --playwright --vitest --no-svelte5",
"start:mini": "pnpm start --name=mini --template=skeleton --types=null --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5",
"start:svelte5": "pnpm start --name=svelte5 --template=default --types=typescript --prettier --eslint --playwright --vitest --svelte5",
"type-check": "tsc --noEmit"
},
"prettier": "@storybook/linter-config/prettier.config.js",
"dependencies": {
"create-svelte": "6.4.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@storybook/linter-config": "^3.1.2",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.31",
"@types/yargs": "^17.0.32",
"auto": "^11.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@8.10.5",
"engines": {
"node": ">=18.0.0"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}