forked from textlint/textlint-plugin-typst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "textlint-plugin-typst",
"version": "1.4.1",
"description": "textlint plugin to lint Typst",
"keywords": ["textlint", "textlintplugin", "plugin", "lint", "typst"],
"repository": "https://github.com/textlint/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 --outfile=lib/index.js --platform=node --external:@myriaddreamin/typst-ts-web-compiler --minify",
"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 .",
"ci": "biome ci .",
"test": "vitest",
"update-fixtures": "bun ./test/unit/update-fixtures.ts && biome check --write ./test/unit/fixtures"
},
"dependencies": {
"@myriaddreamin/typst-ts-web-compiler": "0.7.0-rc2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@myriaddreamin/typst.ts": "0.7.0-rc2",
"@textlint/ast-node-types": "^14.0.4",
"@textlint/ast-tester": "^14.0.4",
"@textlint/types": "^14.0.4",
"@types/node": "^24.10.4",
"bun-types": "latest",
"esbuild": "^0.20.2",
"textlint-rule-period-in-list-item": "^1.0.1",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-sentence-length": "5.2.1",
"textlint-scripts": "^14.0.4",
"textlint-tester": "^14.0.4",
"typescript": "^5.4.3",
"vitest": "^1.4.0",
"yaml": "^2.5.1"
}
}