-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "@cursorless/talon-tools",
"version": "0.10.2",
"description": "Linting and formatting tools for Talon and Cursorless",
"author": "Cursorless Dev",
"license": "MIT",
"type": "module",
"files": [
"dist",
"!dist/test",
"!dist/build.*"
],
"types": "./dist/lib.d.ts",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./node": {
"types": "./dist/node/libNode.d.ts",
"default": "./dist/libNode.js"
}
},
"bin": {
"snippet-fmt": "dist/snippetFormatter.js",
"talon-fmt": "dist/talonFormatter.js",
"tree-sitter-fmt": "dist/treeSitterFormatter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cursorless-dev/talon-tools.git"
},
"funding": "https://github.com/sponsors/cursorless-dev",
"sponsor": {
"url": "https://github.com/sponsors/cursorless-dev"
},
"scripts": {
"build": "npm run clean && tsc -p . && tsx ./src/build.ts",
"clean": "rm -rf dist/*",
"lint": "npm run typecheck && npm run lint:ts && npm run lint:fmt",
"typecheck": "tsc -p . --noEmit",
"lint:ts": "oxlint -c oxlint.config.mts --deny-warnings .",
"lint:fmt": "oxfmt --check .",
"fix": "npm run fix:ts && npm run fix:fmt",
"fix:ts": "oxlint -c oxlint.config.mts --fix .",
"fix:fmt": "oxfmt .",
"test": "tsx src/test/runAllTests.ts",
"test:subset": "tsx src/test/runAllTests.ts --subset"
},
"dependencies": {
"@cursorless/tree-sitter-wasms": "^0.8.1",
"editorconfig": "^3.0.2",
"fast-glob": "^3.3.3",
"get-stdin": "^10.0.0",
"web-tree-sitter": "^0.26.8"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.12.2",
"esbuild": "^0.28.0",
"mocha": "^11.7.5",
"oxfmt": "^0.44.0",
"oxlint-tsgolint": "^0.20.0",
"oxlint": "^1.59.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}