-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1009 Bytes
/
package.json
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
{
"name": "kui.nvim",
"version": "0.11.0",
"description": "A neovim UI framework using the kitty graphics protocol",
"main": "index.js",
"scripts": {
"build": "npm run build:lua && npm run build:types",
"build:lua": "tstl",
"build:types": "tsc --declaration --emitDeclarationOnly --project tsconfig-declaration.json && node ./scripts/adjustPaths.js",
"prepare": "npm run build",
"start": "tstl --watch"
},
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/types",
"/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/romgrk/kui.nvim.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/romgrk/kui.nvim/issues"
},
"homepage": "/~https://github.com/romgrk/kui.nvim#readme",
"devDependencies": {
"lua-types": "^2.13.1",
"typescript": "^4.9.5",
"typescript-to-lua": "^1.12.1",
"walkdir": "^0.4.1"
},
"dependencies": {
"colord": "^2.9.3"
}
}