-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.56 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "mag-variable-update",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:webpack-example": "webpack -c ./example_src/webpack.config.js",
"build:dev": "webpack --mode development",
"build:dts": "tsc -p tsconfig.dts.json",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --progress",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --json --outputFile=test-results.json --coverageReporters=json-summary --coverageReporters=text --coverageReporters=lcov"
},
"packageManager": "yarn@3.4.1",
"repository": {
"type": "git",
"url": "https://github.com/MagicalAstrogy/MagVarUpdate"
},
"browserslist": [
"defaults and fully supports es6-module"
],
"private": true,
"dependencies": {
"compare-versions": "^6.1.1",
"corepack": "^0.32.0",
"fast-json-patch": "^3.1.1",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"klona": "^2.0.6",
"lodash": "^4.17.21",
"mathjs": "^12.4.1",
"moment": "^2.30.1",
"pinia": "^3.0.3",
"rxjs": "^7.8.2",
"vue": "^3.5.21",
"yaml": "^2.8.0",
"zod": "^4.1.11"
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@tailwindcss/postcss": "^4.1.13",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/jqueryui": "^1.12.24",
"@types/lodash": "^4.17.16",
"@types/toastr": "^2.1.43",
"@types/webpack": "^5.28.5",
"@typescript-eslint/parser": "^8.32.1",
"@vueuse/core": "^14.2.1",
"autoprefixer": "^10.4.21",
"css-loader": "^7.1.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-better-tailwindcss": "^3.7.9",
"eslint-plugin-import-x": "^4.15.2",
"eslint-plugin-pinia": "^0.4.1",
"eslint-plugin-vue": "^10.5.0",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^16.4.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jest-localstorage-mock": "^2.4.26",
"jquery": "^4.0.0",
"jsonrepair": "^3.13.2",
"mini-css-extract-plugin": "^2.10.0",
"nodemon": "^3.1.10",
"postcss-loader": "^8.2.0",
"postcss-minify": "^1.2.0",
"prettier": "^3.5.3",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-loader": "^6.0.0",
"socket.io": "^4.8.3",
"terser-webpack-plugin": "^5.3.14",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.44.1",
"typescript-json-schema": "^0.65.1",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^31.0.0",
"vue-eslint-parser": "^10.2.0",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
}
}