-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 915 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
{
"name": "synto",
"version": "1.2.21",
"private": true,
"type": "module",
"license": "MIT",
"author": "Artem Iagovdik <artyom.yagovdik@gmail.com> (https://github.com/artttj)",
"repository": "github.com/artttj/synto",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "node scripts/build.js",
"zip": "node scripts/zip.js",
"release": "node scripts/release.js",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/chrome": "^0.1.37",
"@types/turndown": "^5.0.6",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
}
}