-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
{
"name": "@excaliburjs/plugin-spritefusion",
"version": "0.30.2",
"description": "Excalibur Sprite Fusion Plugin",
"main": "build/umd/excalibur-spritefusion.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-spritefusion.js",
"require": "./build/umd/excalibur-spritefusion.js"
}
},
"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"
},
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"devDependencies": {
"cross-env": "7.0.3",
"excalibur": "~0.30.1",
"http-server": "14.1.1",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"peerDependencies": {
"excalibur": "~0.30.1"
},
"dependencies": {
"zod": "3.24.1"
}
}