-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
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
{
"name": "@patrick115/create-app",
"version": "2.2.8",
"description": "Create a SvelteKit/TypeScript/Discord Bot app",
"bin": "bin.js",
"scripts": {
"dev": "tsx --watch ./src/index.ts",
"build": "mkdir -p lib && tsc -p tsconfig.json --outDir lib && cp -r src/projects/templates lib/projects",
"start": "node ./lib/index.js",
"start:dev": "tsx ./src/index.ts",
"clear": "rm -r build",
"publ": "npm publish --access public",
"runTest": "pnpm build && rm -rf test && mkdir -p test && cd test && node ../build/index.js && cd .."
},
"keywords": [],
"author": "Patrik Mintěl",
"license": "MIT",
"dependencies": {
"cli-color": "^2.0.4",
"enquirer": "^2.4.1",
"node-fetch": "^3.3.2",
"sv": "^0.6.1"
},
"devDependencies": {
"@types/cli-color": "^2.0.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.9.0",
"tsx": "^4.19.4",
"typescript": "^5.6.3"
},
"files": [
"lib",
"lib/**/.gitignore"
],
"repository": {
"type": "git",
"url": "git+https://github.com/patrick11514/CreateApp.git"
},
"bugs": {
"url": "https://github.com/patrick11514/CreateApp/issues"
},
"homepage": "https://github.com/patrick11514/CreateApp#readme"
}