-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 998 Bytes
/
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
{
"name": "localpen",
"module": "src/index.ts",
"type": "module",
"bin": "dist/index.js",
"version": "0.3.1",
"description": "Quickly create a local development environment for your TypeScript project.",
"author": "vaaski <[email protected]>",
"repository": "https://github.com/vaaski/localpen",
"license": "MIT",
"files": [
"dist",
"templates"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"vite-templates": "bun run scripts/vite-templates.ts",
"build": "bun run scripts/build.ts",
"test": "bun test",
"format": "biome format --write src scripts *.json",
"prepare": "bun run vite-templates && bun run build"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"dependencies": {
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"temporary-path": "^1.0.0"
}
}