-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "talon-rpc",
"displayName": "Talon RPC",
"version": "2.3.0",
"description": "RPC 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-rpc",
"funding": "https://github.com/sponsors/AndreasArvidsson",
"repository": {
"type": "git",
"url": "git+https://github.com/cursorless-dev/talon-rpc.git"
},
"bugs": {
"url": "https://github.com/cursorless-dev/talon-rpc/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",
"fix:meta": "file-updater && prettier --write .",
"test:meta": "eslint src && file-updater --test && prettier --check .",
"file-updater": "file-updater"
},
"dependencies": {},
"devDependencies": {
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"file-updater": "0.5.0",
"prettier": "3.3.2",
"ts-archetype": "0.4.0",
"typescript": "5.4.5"
}
}