-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.5 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
{
"name": "cnoi-statement-generator",
"private": true,
"description": "A website to generate CNOI-style statements for competitive programming.",
"license": "AGPL-3.0",
"version": "1.0.1",
"type": "module",
"repository": {
"url": "https://github.com/Mr-Python-in-China/cnoi-statement-generator"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --cache --cache-location ./node_modules/.cache/.eslintcache",
"format": "prettier -w . --cache",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"compile-examples": "vite-node scripts/compile-examples.ts",
"quality": "prettier -c . --cache && npm run lint && tsc -b && npm run test",
"prepare": "husky && npm run compile-examples"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/view": "^6.39.9",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@mr.python/promise-worker-ts": "^1.0.0",
"@myriaddreamin/typst-ts-renderer": "0.7.0-rc2",
"@myriaddreamin/typst-ts-web-compiler": "0.7.0-rc2",
"@myriaddreamin/typst.ts": "0.7.0-rc2",
"@reactuses/core": "^6.1.11",
"@uiw/react-codemirror": "^4.25.4",
"antd": "^6.2.2",
"async-mutex": "^0.5.0",
"axios": "^1.13.4",
"base64-js": "^1.5.1",
"browser-update": "^3.3.63",
"dayjs": "^1.11.19",
"dexie": "^4.2.1",
"jszip": "^3.10.1",
"lodash-es": "^4.17.22",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.11.0",
"remark": "^15.0.1",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"strict-event-emitter": "^0.5.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"use-immer": "^0.11.0",
"xxhashjs": "^0.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@mr.python/vite-plugin-remark-rehype": "^0.1.1",
"@myriaddreamin/typst-ts-node-compiler": "0.7.0-rc2",
"@types/browser-update": "^3.3.3",
"@types/fontkit": "^2.0.8",
"@types/lodash-es": "^4.17.12",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/unist": "^3.0.3",
"@types/xxhashjs": "^0.2.4",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.22",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"fontkit": "^2.0.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"mdast-util-to-hast": "^13.2.1",
"pdf-to-img": "^5.0.0",
"pngjs": "^7.0.0",
"postcss-load-config": "^6.0.1",
"postcss-preset-env": "^11.1.2",
"prettier": "^3.7.4",
"sharp": "^0.34.5",
"ts-toolbelt": "^9.6.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.3.1",
"vite-node": "^5.3.0",
"vite-plugin-assets-split": "^1.0.1",
"vitest": "^4.0.10"
}
}