-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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-sweet-app",
"version": "1.0.11",
"description": "Scaffold a full-stack SvelteKit application with tRPC and WindiCSS out of the box",
"author": "David Hrabě <david.hrabe12@seznam.cz>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sproott/create-sweet-app.git"
},
"keywords": [
"create-sweet-app",
"svelte-kit",
"sweet-stack",
"windi",
"tRPC",
"typescript"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"create-sweet-app": "./dist/index.js"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"build": "tsup src/index.ts --format esm --clean --sourcemap --minify --metafile",
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.js\"",
"start": "node dist/index.js",
"lint": "eslint src/ --fix",
"lint:check": "eslint src/ --cache --cache-strategy content",
"pub:beta": "npm run build && npm publish --tag beta",
"pub:release": "npm run build && npm publish"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"tsup": "^6.2.2",
"type-fest": "^2.19.0",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "^5.0.1",
"create-svelte": "2.0.1",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"inquirer": "^9.1.0",
"ora": "^6.1.2"
}
}