-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "@vpmedia/phixify",
"version": "2.0.1",
"description": "Phaser and Pixi.js game engine asset and manifest command line generator",
"author": "Andras Csizmadia <[email protected]> (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"
},
"dependencies": {
"@rollup/plugin-json": "^6.1.0",
"commander": "^13.1.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.2",
"rollup": "^4.34.8",
"typescript": "^5.7.3"
},
"browserslist": [
"> 0.5%",
"not dead",
"not op_mini all",
"iOS >= 14"
]
}