-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "@vpmedia/phixify",
"version": "2.2.0",
"description": "Phaser and Pixi.js game engine asset and manifest command line generator",
"author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
"license": "MIT",
"homepage": "https://github.com/vpmedia/phixify#readme",
"bugs": {
"url": "https://github.com/vpmedia/phixify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpmedia/phixify.git"
},
"keywords": [
"phaser",
"pixi",
"pixi.js",
"pixijs",
"asset",
"assets",
"bundle",
"manifest",
"cli",
"generator"
],
"type": "module",
"main": "./dist/phixify.js",
"module": "./dist/phixify.js",
"bin": {
"phixify": "./dist/phixify.js"
},
"scripts": {
"prepack": "pnpm run build",
"prebuild": "rm -rf ./dist && rm -rf ./lib",
"build": "rolldown --config",
"check": "pnpm lint && pnpm test && pnpm typecheck",
"format": "oxfmt --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,css}\"",
"lint": "oxlint src",
"test": "vitest --coverage --pass-with-no-tests",
"typecheck": "tsc"
},
"dependencies": {
"commander": "^14.0.3",
"sharp": "^0.34.5"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"jsdom": "^29.1.1",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.22.1",
"rolldown": "1.0.0-rc.18",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}