forked from piskelapp/piskel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.54 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
{
"name": "piskel-playdate",
"version": "0.16.1",
"private": true,
"description": "Pixel art editor",
"author": "Matt Sephton",
"homepage": "https://github.com/gingerbeardman/piskel-playdate",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:gingerbeardman/piskel-playdate.git"
},
"files": [
"dest/prod",
"misc/scripts/piskel-root"
],
"bin": {
"piskel-root": "./misc/scripts/piskel-root",
"piskel-cli": "./cli/index.js"
},
"main": "http://localhost:9901/?debug",
"node-remote": "http://localhost:9901/?debug",
"scripts": {
"grunt": "grunt",
"postinstall": "base-volta-off-of-nwjs",
"test": "grunt test",
"dev": "concurrently -k npm:dev:*",
"dev:website": "grunt play",
"dev:desktop": "wait-on -c waitOn.config.json http-get://localhost:9901/?debug && nw .",
"start": "grunt build && nw",
"preversion": "grunt test build",
"postversion": "git push && git push --tags && npm publish",
"release": "grunt && node ./bin/copy-to-piskel-website",
"build:win": "grunt desktop-win-x64",
"build:linux": "grunt desktop-linux-x64",
"build:mac": "grunt desktop-osx-x64",
"build:mac-arm": "grunt desktop-osx-arm",
"format": "grunt eslint --fix"
},
"devDependencies": {
"base-volta-off-of-nwjs": "1.0.5",
"concurrently": "8.2.2",
"date-fns": "3.6.0",
"grunt": "1.6.1",
"grunt-casperjs": "2.2.1",
"grunt-cli": "1.5.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-concat": "2.1.0",
"grunt-contrib-connect": "5.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "25.0.0",
"grunt-include-replace": "5.0.0",
"grunt-karma": "4.0.2",
"grunt-leading-indent": "0.2.0",
"grunt-nw-builder": "4.8.1",
"grunt-replace": "2.0.2",
"grunt-spritesmith": "6.10.0",
"jasmine-core": "5.2.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "4.0.2",
"load-grunt-tasks": "5.1.0",
"nw": "0.90.0-1",
"phantomjs-polyfill-object-assign": "0.0.2",
"phantomjs-prebuilt": "2.1.16",
"promise-polyfill": "8.3.0",
"wait-on": "^7.2.0"
},
"window": {
"title": "Piskel",
"icon": "dest/prod/logo.png",
"toolbar": false,
"width": 1200,
"height": 960,
"top": 0,
"left": 0
},
"dependencies": {
"minimist": "1.2.8"
},
"volta": {
"node": "22.2.0"
},
"ManifestComments": [
"Pin karma-jasmine to v4.0.2 since some tests fail on v5.0.0"
]
}