-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 2.29 KB
/
package.json
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
61
62
63
64
65
66
67
{
"name": "SC2-mod-loader-framework",
"version": "1.0.0",
"description": "SugarCube2 mod loader",
"private": true,
"scripts": {
"ts:BeforeSC2:w": "tsc -w -p ./src/BeforeSC2/tsconfig.json",
"webpack:BeforeSC2:w": "webpack -w -c ./webpack.config.js",
"webpack:BeforeSC2-comp:w": "webpack -w -c ./webpack-comp.config.js",
"ts:ForSC2:w": "tsc -w -p ./src/ForSC2/tsconfig.json",
"webpack:insertTools:w": "webpack -w -c ./webpack-insertTools.config.js",
"tras:babel:w": "babel -w dist-BeforeSC2-comp -d dist-BeforeSC2-comp-babel",
"======================": "",
"ts:BeforeSC2": "tsc -p ./src/BeforeSC2/tsconfig.json",
"webpack:BeforeSC2": "webpack -c ./webpack.config.js",
"webpack:BeforeSC2-comp": "webpack -c ./webpack-comp.config.js",
"ts:ForSC2": "tsc -p ./src/ForSC2/tsconfig.json",
"webpack:insertTools": "webpack -c ./webpack-insertTools.config.js",
"tras:babel": "babel dist-BeforeSC2-comp -d dist-BeforeSC2-comp-babel"
},
"packageManager": "[email protected]",
"dependencies": {
"@sindresorhus/fnv1a": "^3.1.0",
"cheerio": "^1.0.0-rc.12",
"core-js": "^3.37.1",
"idb": "^8.0.0",
"idb-keyval": "^6.2.1",
"jquery": "^3.7.1",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"libsodium-wrappers": "^0.7.13",
"lodash": "^4.17.21",
"lru-cache": "^10.0.1",
"moment": "^2.29.4",
"semver": "^7.5.4",
"ts-mixer": "^6.0.3"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/core-js": "^2.5.8",
"@types/jquery": "^3.5.20",
"@types/libsodium-wrappers": "^0.7.11",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.0",
"@types/semver": "^7.5.2",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.3",
"browserslist": "^4.22.1",
"css-loader": "^6.8.1",
"expose-loader": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}