-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "ai-scriptify",
"version": "0.8.2",
"type": "module",
"description": "AI 驱动的剧本创作工具 - 原创剧本、小说改编、漫剧创作",
"keywords": [
"screenplay",
"script",
"writing",
"ai",
"content-creation",
"短剧",
"剧本",
"小说改编",
"漫剧",
"comic-drama"
],
"author": "Scriptify Team",
"license": "MIT",
"main": "dist/cli.js",
"bin": {
"scriptify": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"dependencies": {
"@commander-js/extra-typings": "^12.0.0",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"js-yaml": "^4.1.0",
"marked": "^16.4.1",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wordflowlab/scriptify"
},
"homepage": "https://github.com/wordflowlab/scriptify#readme",
"bugs": {
"url": "https://github.com/wordflowlab/scriptify/issues"
}
}