forked from excaliburjs/Excalibur
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 5.55 KB
/
Copy pathpackage.json
File metadata and controls
164 lines (164 loc) · 5.55 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "excalibur",
"sideEffects": false,
"version": "0.32.0",
"exNextVersion": "0.33.0",
"publishConfig": {
"provenance": true
},
"description": "Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.",
"author": "https://github.com/excaliburjs/Excalibur/graphs/contributors",
"homepage": "https://github.com/excaliburjs/Excalibur",
"main": "build/dist/excalibur.min.js",
"typings": "build/dist/excalibur.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/dist/excalibur.d.ts",
"development": {
"import": "./build/esm/excalibur.development.js",
"require": "./build/dist/excalibur.development.js"
},
"production": {
"import": "./build/esm/excalibur.js",
"require": "./build/dist/excalibur.js"
},
"import": "./build/esm/excalibur.js",
"require": "./build/dist/excalibur.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/excaliburjs/Excalibur.git"
},
"bugs": {
"url": "https://github.com/excaliburjs/Excalibur/issues"
},
"license": "BSD-2-Clause",
"keywords": [
"excalibur",
"game",
"engine",
"typescript",
"javascript",
"simple"
],
"scripts": {
"all": "npm run format && npm run lint && npm run build && npm run test",
"all:ci": "npm run format && npm run lint && npm run test:ci && npm run build",
"clean": "rimraf ./build",
"linux:ci": "npm run clean && npm run all:ci && npm run coveralls && npm run apidocs",
"appveyor": "npm run all:ci && npm run nuget 0.0.1",
"browserstack": "npm run build:production && karma start karma.conf.browsers.js",
"nuget": ".\\src\\tools\\NuGet.exe pack Excalibur.nuspec -OutputDirectory .\\build\\nuget -version",
"dev": "concurrently --names \"build,types\" \"vite build --watch\" \"npm run types -- --watch\"",
"start": "npm run build:watch",
"types": "tsc --project src/engine/tsconfig.json --declaration --incremental true --tsBuildInfoFile build/dist/.tsbuildinfo --emitDeclarationOnly",
"build": "npm run build:production && npm run build:development && npm run types",
"build:production": "vite build && vite build --minify false",
"build:development": "vite build --mode development && vite build --mode development --minify false",
"format": "prettier . --check",
"format:fix": "npm run format -- --write",
"lint": "npm run eslint",
"lint:fix": "npm run eslint -- --fix",
"type-check": "cd src/engine && tsc --noEmit",
"eslint": "eslint .",
"visual": "storybook dev -p 6006",
"build-storybook": "storybook build -o build-storybook",
"sandbox": "cd sandbox && vite",
"test": "vitest --ui",
"test:ci": "vitest",
"test:watch": "npm run test -- --watch",
"test:unit": "vitest --project unit",
"test:unit:headless": "npm run test:unit -- --browser.headless",
"test:debug:unit:headless": "npm run test:unit -- --browser.headless --inspect --no-file-parallelism",
"test:visual": "vitest --project visual",
"test:visual:headless": "npm run test:visual -- --browser.headless",
"apidocs": "node scripts/apidocs.js",
"release": "cross-env release=true npm run all",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.30.1",
"@fortawesome/fontawesome-free": "6.7.2",
"@octokit/rest": "21.1.1",
"@storybook/html-vite": "9.1.17",
"@types/jasmine": "5.1.15",
"@types/node": "22.19.7",
"@types/react-color": "3.0.13",
"@types/webpack-env": "1.18.8",
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/ui": "3.2.4",
"concurrently": "9.2.1",
"copyfiles": "2.4.1",
"coveralls-next": "5.0.0",
"cross-env": "7.0.3",
"css-loader": "6.11.0",
"eslint": "9.30.1",
"eslint-plugin-jsdoc": "51.4.1",
"excalibur-jasmine": "0.5.0",
"globals": "16.5.0",
"husky": "9.1.7",
"jasmine": "5.13.0",
"jasmine-core": "5.13.0",
"karma": "6.4.4",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-order-reporter": "1.2.0",
"karma-spec-reporter": "0.0.36",
"karma-summary-reporter": "4.0.1",
"karma-webpack": "5.0.1",
"lint-staged": "15.5.2",
"pixelmatch": "5.3.0",
"playwright": "1.58.1",
"prettier": "3.8.1",
"puppeteer": "24.36.1",
"raw-loader": "4.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"replace-in-file": "7.2.0",
"rimraf": "5.0.10",
"serve": "14.2.5",
"source-map-support": "0.5.21",
"storybook": "9.1.17",
"sync-request": "6.1.0",
"ts-loader": "9.5.4",
"typedoc": "0.25.13",
"typescript": "5.6.3",
"typescript-eslint": "8.38.0",
"url-loader": "4.1.1",
"vite": "6.4.1",
"vite-plugin-banner": "0.8.1",
"vite-plugin-static-copy": "3.1.4",
"vitest": "3.2.4",
"webpack": "5.103.0",
"webpack-cli": "5.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,json,md,yml,yaml}": "prettier --write",
"*.{js,jsx,ts,tsx,html}": "eslint --fix"
},
"overrides": {
"typedoc": {
"typescript": ">=4.7.4"
}
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error",
"version": ">=22"
},
"packageManager": {
"name": "npm",
"onFail": "error",
"version": ">=11"
}
}
}