-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "template-ts-rollup",
"version": "1.0.0",
"description": "Excalibur with Rollup.js Template",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -f esm -w",
"test": "npm run build && npx playwright test",
"test:integration-update": "npx playwright test --update-snapshots",
"start": "npm-run-all --parallel serve watch",
"serve": "serve public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excaliburjs/template-ts-rollup.git"
},
"keywords": [
"excalibur",
"rollup",
"bundler",
"template"
],
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/excaliburjs/template-ts-rollup/issues"
},
"homepage": "https://github.com/excaliburjs/template-ts-rollup#readme",
"dependencies": {
"excalibur": "0.30.3"
},
"devDependencies": {
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "12.1.2",
"@playwright/test": "^1.49.0",
"@types/node": "^22.10.0",
"npm-run-all2": "7.0.2",
"rollup": "4.30.1",
"serve": "14.2.4",
"tslib": "2.8.1",
"typescript": "5.7.3"
}
}