-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "bibtex-tidy",
"version": "1.15.1",
"description": "Tidy bibtex files",
"homepage": "https://github.com/FlamingTempura/bibtex-tidy",
"repository": {
"type": "git",
"url": "https://github.com/FlamingTempura/bibtex-tidy.git"
},
"author": "FlamingTempura",
"license": "MIT",
"main": "./bibtex-tidy.js",
"type": "module",
"module": "./bibtex-tidy.js",
"types": "./bibtex-tidy.d.ts",
"man": "./bibtex-tidy.0",
"bin": {
"bibtex-tidy": "./bin/bibtex-tidy"
},
"files": [
"bin/bibtex-tidy",
"bibtex-tidy.js",
"bibtex-tidy.d.ts",
"bibtex-tidy.0"
],
"scripts": {
"build": "node build.ts",
"serve": "node build.ts --serve",
"test": "vitest run",
"test:unit": "vitest run src",
"test:update-snapshots": "npm test -- test/ui/ui-vr.test.ts --update=all",
"typecheck": "tsc --noEmit",
"cover": "vitest run --coverage src",
"preversion": "git pull --rebase",
"version": "./scripts/prepare-release.sh",
"postversion": "git push --follow-tags && npm publish",
"codemirror-grammar": "lezer-generator src/ui/codemirrorExtensions/bibtex.grammar -o src/ui/codemirrorExtensions/__generated__/bibtex.ts",
"check": "npx @biomejs/biome check"
},
"engines": {
"node": ">12"
},
"devEngines": {},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@codemirror/commands": "^6.6.1",
"@codemirror/language": "^6.11.1",
"@codemirror/view": "^6.37.1",
"@lezer/generator": "^1.7.3",
"@lezer/highlight": "^1.2.1",
"@microsoft/api-extractor": "7.58.12",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.4",
"@types/jest-image-snapshot": "^6.4.1",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.7",
"core-js": "^3.43.0",
"esbuild": "^0.28.0",
"esbuild-svelte": "^0.9.3",
"happy-dom": "^20.9.0",
"jest-image-snapshot": "^6.5.2",
"playwright": "^1.60.0",
"svelte-preprocess": "^6.0.3",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"yaml": "^2.8.0"
}
}