forked from bmen25124/SillyTavern-MCP-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.51 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
{
"name": "sillytavern-mcp-client",
"version": "1.0.0",
"description": "An extension of MCP for SillyTavern",
"type": "module",
"main": "src/scripts/main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development sass src/styles/main.scss dist/style.css --source-map & cross-env NODE_ENV=development webpack --mode development --config webpack.config.cjs --watch",
"build": "cross-env NODE_ENV=production sass src/styles/main.scss dist/style.css --no-source-map && cross-env NODE_ENV=production webpack --mode production --config webpack.config.cjs",
"test": "jest",
"prettify": "prettier --write \"src/**/*.ts\" \"templates/**/*.html\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/node": "^22.13.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"sillytavern-utils-lib": "^1.0.16"
}
}