-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.29 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
{
"name": "apm-web",
"version": "1.0.0",
"private": true,
"description": "apm-web is a web-based tool to edit package data of AviUtl Package Manager.",
"keywords": [
"aviutl",
"aviutl-package-manager"
],
"license": "MIT",
"author": "Mitosagi",
"scripts": {
"build": "next build",
"deploy": "run-s build deploy:gh-pages",
"deploy:gh-pages": "gh-pages -d out/apm-web",
"dev": "next dev",
"fix": "run-s fix:prettier fix:next",
"fix:next": "next lint --fix --dir src",
"fix:prettier": "prettier --write --ignore-path .gitignore .",
"lint": "run-s lint:prettier lint:next",
"lint:next": "next lint --dir src",
"lint:prettier": "prettier --check --ignore-path .gitignore .",
"prepare": "run-s prepare:husky prepare:libarchive",
"prepare:husky": "husky",
"prepare:libarchive": "cpx \"./node_modules/libarchive.js/dist/**\" ./public/dist/",
"start": "next start",
"telemetry-disable": "yarn run next telemetry disable"
},
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"encoding-japanese": "^2.2.0",
"fuse.js": "^7.5.0",
"jszip": "^3.10.1",
"libarchive.js": "^2.0.2",
"next": "^15.5.23",
"path-browserify": "^1.0.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-dropzone": "^14.4.1",
"sortablejs": "^1.15.7",
"survey-core": "^1.12.67",
"survey-react-ui": "^1.12.67",
"typescript": "^5.9.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@types/bootstrap": "^5.2.11",
"@types/encoding-japanese": "^2.2.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.20.1",
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/sortablejs": "^1.15.9",
"apm-schema": "team-apm/apm-schema#v3.3.0",
"cpx": "^1.5.0",
"eslint": "^9.39.5",
"eslint-config-next": "^15.5.23",
"eslint-config-prettier": "^10.1.8",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.9.6",
"prettier-plugin-packagejson": "^2.5.22",
"typescript-eslint": "^8.67.0"
},
"packageManager": "yarn@1.22.22"
}