-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 KB
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
{
"name": "@tangentstorm/b4",
"version": "0.1.0",
"description": "A stack-based virtual machine with a Forth-like flavor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tangentstorm/b4"
},
"keywords": ["forth", "vm", "stack-machine", "assembler", "interpreter"],
"main": "dist/b4.mjs",
"type": "module",
"types": "dist/b4.d.mts",
"exports": {
".": {
"types": "./dist/b4.d.mts",
"default": "./dist/b4.mjs"
},
"./repl": {
"types": "./dist/b4-repl.d.mts",
"default": "./dist/b4-repl.mjs"
},
"./native": {
"types": "./dist/b4-native.d.mts",
"default": "./dist/b4-native.mjs"
},
"./b4i": {
"types": "./dist/b4i.d.mts",
"default": "./dist/b4i.mjs"
},
"./mem-browser": {
"types": "./dist/b4-mem-browser.d.mts",
"default": "./dist/b4-mem-browser.mjs"
},
"./hl": {
"types": "./dist/b4-hl.d.mts",
"default": "./dist/b4-hl.mjs"
}
},
"bin": {
"b4i": "dist/b4i.mjs"
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}