-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "p8",
"version": "1.0.0",
"description": "👾 PICO-8 dependency manager",
"main": "lib/index.js",
"module": "src/index.ts",
"bin": {
"p8": "bin/p8"
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": [
"package.json"
]
},
"scripts": {
"start": "tsc -w",
"prestart": "rm -rf lib",
"test": "pkg -o p8 package.json && ./p8",
"build": "npm run build-linux && npm run build-macos && npm run build-win",
"prebuild": "tsc && rm -rf target && mkdir -p target/{linux,macos,win}",
"build-linux": "pkg -o target/linux/p8 -t linux package.json",
"build-macos": "pkg -o target/macos/p8 -t macos package.json",
"build-win": "pkg -o target/win/p8 -t win package.json"
},
"devDependencies": {
"@types/get-pixels": "^3.3.1",
"@types/node": "^13.13.52",
"@types/node-fetch": "^2.5.4",
"@types/yargs": "^17.0.0",
"pkg": "^5.2.1",
"typescript": "^3.7.5"
},
"dependencies": {
"get-pixels": "^3.3.2",
"moonc": "^1.1.5",
"node-fetch": "^2.6.0",
"yargs": "^17.0.1"
},
"author": "Josiah Savary <[email protected]> (http://jsavary.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jozanza/p8.git"
},
"bugs": {
"url": "https://github.com/jozanza/p8/issues"
},
"keywords": [
"pico8",
"pico-8",
"lua",
"moonscript",
"carts"
]
}