-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "@vpmedia/phixify",
"version": "2.0.1",
"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": {
"prebuild": "rm -rf ./dist && rm -rf ./lib",
"build": "rollup -c",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"typecheck": "tsc",
"format": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,md,css}\"",
"lint": "eslint \"**/*.{js,jsx}\"",
"prepack": "npm run build",
"lefthook:install": "lefthook install",
"lefthook:uninstall": "lefthook uninstall"
},
"dependencies": {
"@rollup/plugin-json": "^6.1.0",
"commander": "^13.1.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.10.10",
"prettier": "^3.4.2",
"rollup": "^4.31.0",
"typescript": "^5.7.3"
},
"browserslist": [
"> 0.5%",
"not dead",
"not op_mini all"
]
}