Skip to content

Commit

Permalink
Add all needed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Peterclark1996 committed Aug 31, 2024
1 parent e36a15b commit 420e200
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/create-s2ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-s2ts",
"version": "0.3.3",
"version": "0.3.4",
"description": "A tool to scaffold a s2ts project",
"main": "dist/index.js",
"bin": {
Expand Down
15 changes: 8 additions & 7 deletions packages/s2ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s2ts",
"version": "0.3.3",
"version": "0.3.4",
"description": "A tool to automatically compile counter-strike TS files (.vts files)",
"main": "dist/index.js",
"bin": {
Expand All @@ -23,22 +23,18 @@
],
"scripts": {
"build": "tsc --project tsconfig.build.json && ts-node ./src/postBuild.ts",
"start": "ts-node --transpile-only --project tsconfig.json src/cli.ts start \"D:\\Steam\\steamapps\\common\\Counter-Strike Global Offensive\\content\\csgo_addons\\s2ts4\"",
"start": "ts-node --transpile-only --project tsconfig.json src/cli.ts start",
"test": "jest --testMatch **/tests/**/*.test.ts",
"publish-npm": "npm run build && npm publish"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"rollup": "^4.18.0",
"ts-node": "^10.9.2"
},
"prettier": {
Expand All @@ -50,6 +46,11 @@
},
"dependencies": {
"chokidar": "^3.6.0",
"typescript": "^5.5.2"
"typescript": "^5.5.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.18.0",
"tslib": "^2.7.0"
}
}

0 comments on commit 420e200

Please sign in to comment.