-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "tts-types",
"version": "0.0.3",
"description": "",
"main": "index.js",
"scripts": {
"convert": "tsx watch ./src/index.ts",
"compile": "tstl",
"test": "tsc -p .",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenlafl/tts-typescript.git"
},
"author": "",
"files": [
"index.d.ts",
"types/**/*.d.ts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenlafl/tts-typescript/issues"
},
"homepage": "https://github.com/stevenlafl/tts-typescript#readme",
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"proseWrap": "never",
"singleQuote": true
},
"devDependencies": {
"@types/node": "^14.14.2",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.2",
"typescript-to-lua": "^1.14.0"
},
"dependencies": {
"@typescript-to-lua/language-extensions": "^1.19.0"
}
}