-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"$schema": "https://json.schemastore.org/package",
"name": "warscript",
"version": "0.0.1",
"description": "A typescript library for Warcraft III using Warpack.",
"keywords": [
"warcraft",
"warscript"
],
"license": "MIT",
"author": "rhazarian",
"repository": {
"type": "git",
"url": "git+https://github.com/rhazarian/warscript.git"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tstl && copyfiles -u 1 \"src/**/*.d.ts\" \"src/**/*.lua\" dist && copyfiles LICENSE package.json dist",
"prepublishOnly": "echo You should run 'npm run publish' instead. && exit 1",
"publish": "npm run build && npm publish ./dist --ignore-scripts"
},
"peerDependencies": {
"@warscript/language-extensions": "^0.0.1",
"@warscript/tstl-plugin": "^0.0.4",
"lua-types": "^2.13.1",
"warpack": "0.0.1-dev.07dd222"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"async": "^3.2.6",
"copyfiles": "^2.4.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}