-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.55 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.55 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "apm",
"version": "3.9.1",
"description": "A package manager for AviUtl",
"repository": "https://github.com/team-apm/apm.git",
"license": "MIT",
"author": "ato lash <28973861+hal-shu-sato@users.noreply.github.com>",
"main": ".webpack/main",
"scripts": {
"cm": "npx cz",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write .",
"lint": "run-s lint:prettier lint:eslint",
"lint:eslint": "eslint --fix-dry-run .",
"lint:prettier": "prettier --check .",
"make": "yarn run notices && electron-forge make",
"notices": "yarn licenses generate-disclaimer --frozen-lockfile --prod --ignore-platform --ignore-engines --ignore-optional > ThirdPartyNotices.txt",
"package": "yarn run notices && electron-forge package",
"prepare": "husky",
"publish": "yarn run notices && electron-forge publish",
"release": "standard-version && conventional-github-releaser -p angular --draft",
"release:major": "standard-version --release-as major && conventional-github-releaser -p angular --draft",
"release:minor": "standard-version --release-as minor && conventional-github-releaser -p angular --draft",
"release:patch": "standard-version --release-as patch && conventional-github-releaser -p angular --draft",
"start": "cross-env NODE_ENV=development electron-forge start"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx,json,yml,md,html,css,scss}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@tanstack/react-query": "^5.79.0",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"7zip-bin": "^5.2.0",
"bootstrap": "^5.3.6",
"bootstrap-icons": "^1.13.1",
"clipboard": "^2.0.11",
"compare-versions": "^6.1.1",
"dot-prop": "^9.0.0",
"electron-debug": "^4.1.0",
"electron-dl": "^4.0.0",
"electron-log": "^5.3.2",
"electron-prompt": "^1.7.0",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^8.2.0",
"electron-trpc": "^0.7.1",
"electron-window-state": "^5.0.3",
"fast-xml-parser": "^5.2.3",
"fs-extra": "^11.3.0",
"list.js": "^2.3.1",
"matcher": "^5.0.0",
"node-7z": "^3.0.0",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.0",
"source-map-support": "^0.5.21",
"ssri": "^12.0.0",
"update-electron-app": "^3.1.1",
"win-7zip": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@electron-forge/cli": "6.4.1",
"@electron-forge/maker-deb": "6.4.1",
"@electron-forge/maker-rpm": "6.4.1",
"@electron-forge/maker-squirrel": "6.4.1",
"@electron-forge/maker-zip": "6.4.1",
"@electron-forge/plugin-auto-unpack-natives": "6.4.1",
"@electron-forge/plugin-webpack": "6.4.1",
"@electron-forge/publisher-github": "6.4.1",
"@types/bootstrap": "^5.2.10",
"@types/electron-prompt": "^1.6.5",
"@types/electron-window-state": "^5.0.2",
"@types/fs-extra": "^11.0.4",
"@types/list.js": "^2.3.4",
"@types/node-7z": "^2.1.10",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/ssri": "^7.1.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"apm-schema": "team-apm/apm-schema#v3.3.0",
"commitizen": "^4.3.1",
"conventional-github-releaser": "^3.1.5",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "3.3.0",
"cz-conventional-changelog-ja": "^0.0.2",
"electron": "^34.3.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.7.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-loader": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"mini-css-extract-plugin": "^2.9.2",
"node-loader": "^2.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.15",
"standard-version": "^9.5.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": "22.x || 20.x || 18.x"
},
"productName": "AviUtl Package Manager"
}