-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.51 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
{
"name": "@beetpx/beetpx",
"version": "0.54.0",
"author": "Beetroot Paul",
"license": "MIT",
"description": "A TypeScript engine for pixel art browser games.",
"keywords": [
"beetpx",
"browser",
"browser-games",
"engine",
"framework",
"game development",
"gamedev",
"lo-fi",
"low-resolution",
"lowres",
"pico-8",
"pixel-art",
"pixelart",
"typescript"
],
"homepage": "https://beetpx.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/beetrootpaul/beetpx.git"
},
"bugs": {
"url": "https://github.com/beetrootpaul/beetpx/issues"
},
"files": [
"cli/",
"dist/",
"html_templates/",
"LICENSE",
"package.json",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"beetpx": "cli/beetpx-cli.cjs"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky",
"format": "prettier --ignore-path .gitignore --write cli/ e2e_tests/ html_templates/ scripts/ src/",
"test:tsc": "tsc",
"test:tsc:watch": "tsc --watch",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest watch",
"test:playwright": "cd e2e_tests/ && ./run_e2e_tests.js",
"test": "run-p test:tsc test:vitest test:playwright",
"precompile": "rimraf ./.dist/* ./dist/*",
"compile": "tsc --project tsconfig.compile-all-no-comments.json && tsc --project tsconfig.compile-d-ts-with-comments.json",
"compile:watch": "tsc --project tsconfig.compile-all-no-comments.json --watch",
"postcompile": "rollup --config ./rollup.config.ts --configPlugin typescript",
"website:generate": "./scripts/generateWebsite.sh",
"website:open": "./scripts/openWebsite.sh",
"checkForDepedencyUpdates": "npx npm-check-updates"
},
"dependencies": {
"archiver": "7.0.1",
"audio-buffer-utils": "5.1.2",
"fast-png": "6.2.0",
"strip-comments": "2.0.1",
"vite": "5.3.5",
"yargs": "17.7.2"
},
"devDependencies": {
"@node-cli/static-server": "3.1.0",
"@playwright/test": "1.42.1",
"@rollup/plugin-typescript": "11.1.6",
"@zamiell/typedoc-plugin-not-exported": "0.3.0",
"husky": "9.0.11",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"replace-in-file": "8.1.0",
"rimraf": "5.0.5",
"rollup": "4.19.1",
"rollup-plugin-dts": "6.1.1",
"tslib": "2.6.3",
"typedoc": "0.26.5",
"typedoc-plugin-extras": "3.1.0",
"typescript": "5.5.3",
"vitest": "2.0.4"
}
}