-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "tarantoolscript",
"version": "0.31.0",
"author": "Vitaliy Artemov [email protected]",
"description": "TypeScript definitions for Tarantool Lua API.",
"repository": {
"type": "git",
"url": "git+https://github.com/vitaliy-art/tarantoolscript.git"
},
"keywords": [
"tarantool",
"types",
"typescript-to-lua",
"tstl",
"lua",
"declarations"
],
"license": "MIT",
"homepage": "https://github.com/vitaliy-art/tarantoolscript",
"bugs": {
"url": "https://github.com/vitaliy-art/tarantoolscript/issues"
},
"scripts": {
"build": "tstl",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"lint-and-fix": "eslint --fix -f unix \"src/**/*.{ts,tsx}\"",
"test": "npm run build && cd ./build && .rocks/bin/luatest"
},
"files": [
"src/**/*.d.ts"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.13.0",
"typescript": "^5.7.2",
"typescript-to-lua": "^1.28.1"
},
"types": "./src/index.d.ts",
"dependencies": {
"@typescript-to-lua/language-extensions": "^1.19.0",
"lua-types": "^2.13.1"
}
}