-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@gkzhb/lua-types-nvim",
"version": "0.0.7",
"description": "TypeScript definitions for Neovim Lua APIs",
"keywords": [
"neovim",
"typescript",
"lua",
"tstl"
],
"main": "",
"types": "index.d.ts",
"files": [
"index.d.ts",
"types/*.d.ts",
"types/tsconfig.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "gkzhb <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"url": "https://github.com/gkzhb/lua-types-nvim",
"type": "git"
},
"devDependencies": {
"@msgpack/msgpack": "^2.7.2",
"@types/node": "^18.0.3",
"better-nearley-railroad": "^1.3.0",
"lua-types": "^2.11.0",
"nearley": "^2.20.1",
"tsc": "^2.0.4",
"typescript": "^4.7.4",
"typescript-to-lua": "^1.6.0",
"typescript-tstl-plugin": "^0.3.2"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"build-api-dts": "node dist/api.js",
"build-fn-dts": "node dist/fn.js",
"build-option-dts": "node dist/option.js",
"build-dts": "node dist/index.js",
"preview": "node dist/preview.js",
"in-one-go": "yarn && yarn build && yarn parse-nearley && yarn build-dts",
"clean": "rm -r dist/ && cd types/ && rm -f api.d.ts lsp.d.ts lua.d.ts diagnostic.d.ts treesitter.d.ts fn.d.ts option.d.ts",
"parse-nearley": "nearleyc ./func_signature.ne -o dist/func_signature.js;",
"build-parser-diag": "npx nearley-rr ./dist/func_signature.js func_signature_railroad_diagrams.html"
}
}