-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.71 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@carlwr/textmate-validate",
"description": "Validation of TextMate grammars",
"keywords": [
"vscode",
"textmate",
"grammar",
"validation"
],
"author": {
"name": "carlwr",
"url": "https://github.com/carlwr"
},
"publisher": "carlwr",
"repository": {
"type": "git",
"url": "git+https://github.com/carlwr/textmate-validate.git"
},
"bugs": {
"url": "https://github.com/carlwr/textmate-validate/issues"
},
"homepage": "https://github.com/carlwr/textmate-validate",
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"license": "MIT",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"bin": {
"textmate-validate": "./dist/cli.js"
},
"scripts": {
"build": "tsx build.ts",
"build:dev": "tsx build.ts --dev",
"prebuild": "pnpm run typecheck && pnpm run lint",
"docs": "typedoc",
"prepublishOnly": "pnpm run qa >/dev/null && tsx build.ts && pnpm run docs",
"publish:dry": "pnpm publish --dry-run --no-git-checks",
"publish:release": "pnpm publish",
"version:patch": "pnpm version patch",
"version:minor": "pnpm version minor",
"version:major": "pnpm version major",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"style": "scripts/checkStyle",
"test": "vitest run -t '^(?!@dist)'",
"test:watch": "vitest",
"test:example:ts": "pnpm run build && tsx src/cli.ts -v test/fixtures/grammar.json",
"test:example:js": "pnpm run build && node dist/cli.js -v test/fixtures/grammar.json",
"test:dist": "vitest run -t '@dist'",
"test:all": "vitest run",
"qa": "pnpm run typecheck && pnpm run lint && pnpm test && pnpm run style",
"qa:all": "pnpm run typecheck && pnpm run lint && pnpm test:all && pnpm run style",
"LAST_dummy": "false"
},
"packageManager": "pnpm@11.3.0",
"dependencies": {
"arg": "^5.0.2",
"globby": "^16.2.0",
"read-pkg": "^10.1.0",
"vscode-oniguruma": "2.0.1",
"vscode-textmate": "^9.3.2",
"zzz_LAST_dummy": "npm:empty-npm-package@1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@carlwr/fastcheck-utils": "^0.5.2",
"@carlwr/typescript-extra": "^0.9.1",
"@fast-check/vitest": "^0.4.1",
"@types/node": "^25.9.1",
"ajv": "^8.20.0",
"execa": "^9.6.1",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.7",
"zzz_LAST_dummy": "npm:empty-npm-package@1.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}