-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
53
54
55
{
"name": "typescript-tstl-plugin",
"version": "0.3.2",
"description": "TypeScript TypeScriptToLua Language Service plugin",
"keywords": [
"typescript"
],
"repository": "https://github.com/TypeScriptToLua/typescript-tstl-plugin",
"license": "Apache-2.0",
"author": "ark120202",
"files": [
"lib/**/*.js",
"lib/**/*.ts"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "run-s lint:prettier lint:eslint",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"prepublishOnly": "npm run build",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"mock-require": "^3.0.3",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0",
"tslib": "^1.14.1",
"typescript-to-lua": "^0.36.0"
},
"devDependencies": {
"@types/mock-require": "^2.0.0",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^6.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12.13.0"
}
}