-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "cc-tweaked-types",
"version": "0.4.0",
"description": "Typescript definitions for making code that can be transpiled to CC: Tweaked varient ComputerCraft Lua Code for computing in minecraft",
"main": "declarations/index.d.ts",
"scripts": {
"check": "tsc -p tsconfig.json --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push origin --follow-tags",
"lint": "tslint -c tslint.json declarations/**/*.d.ts",
"lint:fix": "tslint -c tslint.json --fix declarations/**/*.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eforen/cc-tweaked-types.git"
},
"keywords": [
"typescript",
"lua",
"computercraft",
"cc: tweaked",
"minecraft"
],
"types": "declarations/index.d.ts",
"author": "Eforen (Ariel Lothlorien)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eforen/cc-tweaked-types/issues"
},
"homepage": "https://github.com/Eforen/cc-tweaked-types#readme",
"dependencies": {
"lua-types": "^2.8.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"typescript-to-lua": "^0.37.0"
}
}