-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.54 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.54 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": "fscr",
"version": "7.6.1",
"description": "Runs the fscripts.md file",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"find-scripts-in-fscripts": "you can find all scripts in fscripts.md",
"fsr": "bun ./dist/index.js",
"start": "yarn fsr",
"test": "vitest run",
"list": "yarn fsr start",
"test:coverage": "vitest run --coverage"
},
"fscripts": {
"encryptedFiles": [
"config.json"
],
"ignore-upgrade": [],
"config": "test.json"
},
"repository": "https://github.com/agrublev/freedcamp-script-runner.git",
"private": false,
"license": "MIT",
"author": "Angel Grablev <agrublev@gmail.com>",
"engines": {
"node": ">=22"
},
"files": [
"dist",
"bin"
],
"bin": {
"fsr": "./bin",
"fscr": "./bin"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.2",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cross-spawn": "^7.0.6",
"fc-filepick": "^2.0.0",
"fs-extra": "^11.3.5",
"ink": "^7.0.6",
"ink-scroll-list": "^0.4.1",
"inquirer": "^14.0.2",
"markdown-toc": "^1.2.0",
"marked": "^18.0.5",
"moment-mini": "^2.29.4",
"react": "^19.2.7",
"simple-git": "^3.36.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "^0.28.1",
"nodemon": "^3.1.14",
"vitest": "^4.1.8"
}
}