-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "w3ts",
"version": "3.0.2",
"description": "TypeScript API for Warcraft III custom maps.",
"author": "TriggerHappy",
"license": "MIT",
"main": "./index.ts",
"scripts": {
"build": "tstl -p tsconfig.json",
"prepublish": "npm run build && cp package.json ./dist/"
},
"dependencies": {
"war3-types-strict": "^0.1.3"
},
"peerDependencies": {
"lua-types": "^2.13.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@typescript-to-lua/language-extensions": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript-to-lua": "^1.15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherxof/w3ts.git"
},
"bugs": {
"url": "https://github.com/cipherxof/w3ts/issues"
},
"homepage": "https://github.com/cipherxof/w3ts#readme",
"files": [
"./**/*.lua",
"./**/*.d.ts"
],
"types": "./index.d.ts"
}