This repository was archived by the owner on Mar 10, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "talon-snippets",
"displayName": "Talon snippets",
"version": "1.6.0",
"description": "Snippets library for Talon",
"author": "Andreas Arvidsson",
"publisher": "AndreasArvidsson",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"files": [
"lib/*"
],
"homepage": "https://github.com/cursorless-dev/talon-snippets",
"funding": "https://github.com/sponsors/AndreasArvidsson",
"repository": {
"type": "git",
"url": "git+https://github.com/cursorless-dev/talon-snippets.git"
},
"bugs": {
"url": "https://github.com/cursorless-dev/talon-snippets/issues"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf lib",
"prettier": "prettier --write .",
"lint": "eslint src && prettier --check .",
"test": "tsx src/test/runTests.ts"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.3",
"eslint-config-prettier": "^10.1.8",
"eslint": "^10.0.2",
"glob": "^13.0.6",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"ts-archetype": "^0.5.0",
"tsx": "^4.21.0",
"typescript-eslint": "^8.56.1",
"typescript": "^5.9.3"
}
}