-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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
44
{
"name": "create-seamless",
"version": "0.1.2",
"description": "The starter script for Seamless Auth",
"homepage": "https://github.com/fells-code/create-seamless#readme",
"bugs": {
"url": "https://github.com/fells-code/create-seamless/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fells-code/create-seamless.git"
},
"license": "AGPL-3.0-only",
"author": "Fells Code, LLC",
"bin": {
"create-seamless": "dist/index.js",
"seamless": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"main": "dist/index.js",
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"dependencies": {
"@clack/prompts": "^1.0.1",
"adm-zip": "^0.5.16",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.10.13",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}