-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "scaflo",
"version": "1.0.0-alpha.6",
"description": "",
"main": "index.js",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup && tsx ./scripts/transform.ts",
"dev": "tsup --watch",
"start": "node dist/index.js",
"dev:start": "tsx src/index.ts",
"release": "pnpm release-it"
},
"type": "module",
"exports": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/programming-with-ia/scaflo.git"
},
"bin": {
"scaflo": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"pnpm-lock.yaml",
"package.json",
"types.d.ts",
"schema.json"
],
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.10.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"execa": "^9.1.0",
"fs-extra": "^11.3.0",
"ora": "^8.2.0"
},
"devDependencies": {
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"@biomejs/biome": "^2.2.6",
"@types/fs-extra": "^11.0.4",
"jsonc-parser": "^3.3.1",
"scaflo": "^0.0.4",
"type-fest": "^5.1.0",
"release-it": "^19.0.5"
}
}