-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.65 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "gowm",
"version": "1.2.0",
"description": "Go Wasm Manager - Loader system for Go WebAssembly modules with GitHub repository support. Features auto-detection, event system, CLI, React hooks, Vue composables and TypeScript type generation.",
"main": "src/index.js",
"browser": "src/browser.js",
"module": "src/browser.js",
"types": "types/index.d.ts",
"bin": {
"gowm": "./src/cli/gowm-cli.js"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.mjs",
"require": "./src/index.js",
"node": "./src/index.js",
"browser": "./src/browser.js"
},
"./react": {
"types": "./types/react.d.ts",
"default": "./src/react/index.js"
},
"./vue": {
"types": "./types/vue.d.ts",
"default": "./src/vue/index.js"
},
"./tools/type-generator": "./src/tools/type-generator.js"
},
"files": [
"src/",
"types/",
"runtime/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --verbose",
"test:unit": "jest --verbose tests/unit/",
"test:integration": "jest --verbose tests/integration/",
"test:coverage": "jest --coverage",
"test:basic": "node examples/node/basic.js",
"test:crypto": "node examples/node/crypto.js",
"test:node": "node test-quick.js",
"test:examples": "node test-examples.js",
"test:all": "npm run test && npm run test:examples",
"check": "node check-project.js",
"demo:serve": "npx serve examples/browser -p 3000",
"demo:browser": "npm run demo:serve && echo 'Open http://localhost:3000'",
"build": "echo 'No build step needed for this package'",
"prepublishOnly": "npm run check"
},
"keywords": [
"wasm",
"webassembly",
"go",
"golang",
"javascript",
"nodejs",
"github",
"bridge",
"loader",
"manager",
"typescript",
"auto-detection",
"memory-management",
"cross-platform",
"react",
"vue",
"hooks",
"composables",
"cli",
"events"
],
"author": "devbyben",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benoitpetit/gowm.git"
},
"bugs": {
"url": "https://github.com/benoitpetit/gowm/issues"
},
"homepage": "https://github.com/benoitpetit/gowm#readme",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"jest": "^29.7.0"
},
"dependencies": {},
"optionalDependencies": {
"node-fetch": "^3.3.2"
}
}