-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 KB
/
package.json
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
{
"name": "textlint-plugin-typst",
"version": "1.0.1",
"description": "textlint plugin to lint Typst",
"keywords": ["textlint", "textlintplugin", "plugin", "lint", "typst"],
"repository": "https://github.com/3w36zj6/textlint-plugin-typst",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/3w36zj6"
},
"license": "MIT",
"author": "3w36zj6",
"main": "lib/index.js",
"files": ["lib"],
"scripts": {
"build": "esbuild --bundle src/index.ts --outdir=lib --platform=node --external:@myriaddreamin/typst-ts-web-compiler",
"clean": "rm -frv lib",
"format:write": "biome format --write .",
"format": "biome format .",
"lint": "biome lint .",
"lint:apply": "biome lint --apply .",
"check": "biome check .",
"check:write": "biome check --write .",
"test": "vitest",
"update-fixtures": "bun ./test/update-fixtures.ts && biome check --write ./test/fixtures"
},
"dependencies": {
"@myriaddreamin/typst-ts-web-compiler": "^0.5.0-rc7",
"@myriaddreamin/typst.ts": "^0.5.0-rc7",
"yaml": "^2.5.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@textlint/ast-node-types": "^14.0.4",
"@textlint/ast-tester": "^14.0.4",
"@textlint/types": "^14.0.4",
"@types/node": "^20.12.2",
"bun-types": "latest",
"esbuild": "^0.20.2",
"textlint-scripts": "^14.0.4",
"textlint-tester": "^14.0.4",
"tsc": "^2.0.4",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}