-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 932 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 932 Bytes
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
{
"name": "@asm80/cli",
"version": "1.0.40",
"description": "ASM80 command-line tools: assembler, linker, archiver, emulator",
"author": "Martin Maly <maly@maly.cz>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/asm80/asm80-cli.git"
},
"bin": {
"asm80": "./asm80.js",
"asm80-link": "./asm80-link.js",
"asm80-ar": "./asm80-ar.js",
"asm80-run": "./asm80-run.js"
},
"files": [
"asm80.js",
"asm80-link.js",
"asm80-ar.js",
"asm80-run.js"
],
"keywords": [
"assembler",
"emulator",
"z80",
"8080",
"6502",
"retro"
],
"dependencies": {},
"devDependencies": {
"@yao-pkg/pkg": "^5.11.0"
},
"pkg": {
"targets": [
"node18-win-x64",
"node18-linux-x64",
"node18-macos-x64",
"node18-macos-arm64"
],
"outputPath": "dist"
},
"publishConfig": {
"access": "public"
}
}