-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "@biochain/create-miniapp",
"private": true,
"version": "0.1.0",
"description": "CLI 工具用于快速创建 Bio 生态 miniapp 项目",
"type": "module",
"bin": {
"create-miniapp": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"templates"
],
"scripts": {
"dev": "bun src/cli.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"typecheck:run": "tsc --noEmit",
"lint": "oxlint .",
"lint:run": "oxlint .",
"test": "echo 'CLI has no tests'",
"test:run": "echo 'CLI has no tests'",
"test:storybook": "echo 'CLI has no storybook'",
"i18n:run": "echo 'CLI has no i18n'",
"theme:run": "echo 'CLI has no theme'"
},
"dependencies": {
"@inquirer/prompts": "^7.5.0",
"chalk": "^5.4.1",
"execa": "^9.5.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/yargs": "^17.0.33",
"oxlint": "^1.32.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}