-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
101 lines (101 loc) · 3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@excaliburjs/plugin-tiled",
"version": "0.30.1",
"description": "excalibur-tiled provides Tiled map editor integration with Excalibur.js",
"main": "build/umd/excalibur-tiled.min.js",
"typings": "build/umd/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/umd/src/index.d.ts",
"import": "./build/esm/excalibur-tiled.min.js",
"require": "./build/umd/excalibur-tiled.min.js"
}
},
"author": {
"name": "Excalibur.js Team",
"email": "[email protected]",
"url": "http://excaliburjs.com"
},
"homepage": "https://github.com/excaliburjs/excalibur-tiled",
"repository": {
"type": "git",
"url": "git://github.com/excaliburjs/excalibur-tiled.git"
},
"bugs": {
"url": "https://github.com/excaliburjs/excalibur-tiled/issues"
},
"license": "BSD-2-Clause",
"keywords": [
"excalibur",
"game",
"engine",
"tiled",
"maps",
"map",
"typescript",
"javascript",
"simple"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.test.js --open",
"start:no-open": "webpack-dev-server --config webpack.config.test.js",
"start:ci-server": "webpack --config webpack.config.test.js && http-server ./example --port 8080",
"watch": "webpack --progress --watch",
"build:esm": "webpack --progress --config webpack.config.js --mode production --env output=esm",
"build:umd": "webpack --progress --config webpack.config.js --mode production",
"build": "npm run build:umd && npm run build:esm",
"test": "npm run test:unit",
"test:watch": "karma start --single-run=false",
"test:unit": "karma start",
"test:integration": "npx playwright test",
"test:integration-update": "npx playwright test --update-snapshots"
},
"devDependencies": {
"@playwright/test": "1.49.1",
"@types/jasmine": "5.1.5",
"@types/jsdom": "21.1.7",
"@types/json-diff": "1.0.3",
"@types/node": "22.10.7",
"@types/pako": "1.0.7",
"@types/webpack-env": "1.18.5",
"cross-env": "7.0.3",
"excalibur": "~0.30.1",
"http-server": "14.1.1",
"jasmine-core": "5.5.0",
"json-diff": "1.0.6",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-webpack": "5.0.1",
"node-polyfill-webpack-plugin": "3.0.0",
"raw-loader": "4.0.2",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.2",
"webpack-dev-server": "5.2.0"
},
"dependencies": {
"compare-versions": "6.1.1",
"pako": "1.0.11",
"zod": "3.24.1",
"zstddec": "0.1.0"
},
"peerDependencies": {
"excalibur": "~0.30.1"
},
"optionalDependencies": {
"jsdom": "^23.2.0"
},
"browser": {
"jsdom": false
},
"overrides": {
"webpack-dev-server": {
"webpack-dev-middleware": "7.4.2"
}
}
}