-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 918 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 918 Bytes
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
{
"name": "s21plus",
"version": "0.0.6",
"description": "s21 platform enchancement features",
"homepage": "https://platform.21-school.ru",
"module": "esm",
"type": "module",
"engines": {
"node": ">=23"
},
"scripts": {
"build": "node build.mjs",
"dev": "ENVIRONMENT=development node build.mjs",
"release": "pnpm build && mv build/index.user.js . && git add index.user.js",
"postversion": "git push & git push --tags"
},
"keywords": [],
"repository": {
"url": "https://github.com/s21toolkit/s21plus"
},
"author": "s21toolkit",
"license": "AGPL-3.0-only",
"devDependencies": {
"@swc/core": "^1.10.15",
"@types/node": "^22.13.1",
"@types/tampermonkey": "^5.0.4",
"esbuild": "^0.25.0",
"esbuild-svelte": "^0.9.0",
"svelte": "^5.19.9",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.3"
},
"volta": {
"node": "23.11.1"
}
}