-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
56
57
58
{
"name": "gdcore-tools",
"version": "2.0.0",
"description": "A package of GDevelop's Core library with additional helper tools.",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.mjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthuro555/gdcore-tools.git"
},
"engines": {
"node": ">=18"
},
"files": [
"src",
"dist",
"types",
"gd.d.ts"
],
"keywords": [
"gdevelop",
"core",
"bootstrapper"
],
"author": "arthuro555",
"license": "MIT",
"bugs": {
"url": "https://github.com/arthuro555/gdcore-tools/issues"
},
"homepage": "https://github.com/arthuro555/gdcore-tools#readme",
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^18.17.0",
"esbuild": "^0.24.0",
"esbuild-plugin-babel-flow": "^0.0.5",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"node-require-function": "^1.2.0",
"patch-package": "^7.0.2",
"recursive-readdir": "^2.2.3",
"shelljs": "^0.8.5",
"slugs": "^0.1.3",
"typescript": "^5.5.4"
},
"scripts": {
"setup": "patch-package && npm run build",
"prepack": "npm run build && tsc -b",
"build": "node ./build/build.mjs",
"ts": "tsc -b"
}
}