-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.57 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
60
61
62
63
{
"name": "@extism/extism",
"version": "0.0.0-replaced-by-ci",
"description": "Extism runtime for JavaScript",
"scripts": {
"build": "just build",
"format": "just format",
"test": "just test",
"serve": "just serve",
"lint": "just lint"
},
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist/browser/*",
"dist/bun/*",
"dist/cjs/*",
"dist/esm/*"
],
"module": "dist/esm/mod.js",
"main": "dist/cjs/index.js",
"typings": "./dist/cjs/mod.d.ts",
"browser": "./dist/browser/mod.js",
"exports": {
"bun": "./dist/bun/mod.js",
"node": {
"import": {
"types": "./dist/esm/mod.d.ts",
"default": "./dist/esm/mod.js"
},
"require": {
"types": "./dist/cjs/mod.d.ts",
"default": "./dist/cjs/index.js"
}
},
"default": {
"types": "./dist/browser/mod.d.ts",
"default": "./dist/browser/mod.js"
}
},
"author": "The Extism Authors <oss@extism.org>",
"license": "BSD-3-Clause",
"devDependencies": {
"@bjorn3/browser_wasi_shim": "^0.2.17",
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"esbuild": "^0.15.13",
"esbuild-node-builtin": "^0.1.1",
"eslint": "^8.51.0",
"minimatch": "^9.0.3",
"playwright": "^1.39.0",
"prettier": "^2.7.1",
"tape": "^5.7.1",
"typedoc": "^0.25.3",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2"
}
}