-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "@oomol-lab/ovm",
"version": "2.0.0-rc.61",
"description": "oomol virtual machine",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"main": "out/index.js",
"module": "out/index.mjs",
"types": "out/index.d.ts"
},
"exports": {
".": {
"import": {
"types": "./out/index.d.mts",
"default": "./out/index.mjs"
},
"require": {
"types": "./out/index.d.ts",
"default": "./out/index.js"
}
}
},
"scripts": {
"build": "tsup-node",
"lint": "eslint .",
"ts-check": "tsc --noEmit",
"postinstall": "node ./scripts/postinstall.mjs"
},
"keywords": [
"oomol",
"vm",
"ovm"
],
"author": "BlackHole1 <bh@bugs.cc>",
"license": "MIT",
"files": [
"out",
"src",
"scripts"
],
"devDependencies": {
"@oomol-lab/eslint-config-basic": "^0.0.1",
"@oomol-lab/eslint-config-ts": "^0.0.2",
"@oomol-lab/tsconfig": "^0.0.1",
"@types/node": "^20.6.5",
"compressing": "^1.10.1",
"got": "^14.4.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"dependencies": {
"eventsource-client": "^1.1.2",
"node-fetch": "^2.6.7",
"remitter": "^0.4.4"
},
"packageManager": "pnpm@9.6.0"
}