-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@pubwave/cli",
"version": "0.1.7",
"description": "Composable CLI toolkit for language, AI model, local model, and mobile app setup flows.",
"repository": {
"type": "git",
"url": "git+https://github.com/pubwave/pubwave-cli.git"
},
"homepage": "https://github.com/pubwave/pubwave-cli#readme",
"bugs": {
"url": "https://github.com/pubwave/pubwave-cli/issues"
},
"keywords": [
"cli",
"pubwave",
"flutter",
"mobile",
"scaffold",
"setup",
"config",
"wizard",
"tui",
"ink",
"llm",
"ai",
"cloud-model",
"local-model",
"developer-tools"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"pubwave": "./dist/bin.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"example:techbrief-like": "tsx examples/techbrief-like.ts",
"example:with-custom-step": "tsx examples/with-custom-step.ts",
"example:with-stages": "tsx examples/with-stages.ts",
"example:with-managed-config": "tsx examples/with-managed-config.ts",
"test": "vitest run",
"test:watch": "vitest",
"ci": "npm run check && npm run lint && vitest run",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/figlet": "^1.7.0",
"@types/node": "^22.15.21",
"@types/react": "^19.2.14",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"ink-testing-library": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"dependencies": {
"figlet": "^1.11.0",
"ink": "^6.8.0",
"react": "^19.2.6"
},
"peerDependencies": {
"ink": "^6.8.0",
"react": "^19.2.6"
}
}