-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 908 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 908 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
{
"name": "@gloo-ai/baml-schema-wasm-web",
"version": "0.86.1",
"description": "The WASM package for baml-fmt",
"main": "./dist/baml_schema_build.js",
"scripts": {
"clean": "git clean -xdf ./dist .turbo node_modules",
"comment": "don't use 'wasm pack --dev' below or it will be too big of a bundle and playground will be slow to load.",
"build": "pnpm run release",
"release": "pnpm run pack --release",
"pack": "wasm-pack build ../ --target bundler --out-dir ./web/dist"
},
"exports": {
".": {
"import": "./dist/baml_schema_build.js",
"require": "./dist/baml_schema_build.js"
},
"./baml_schema_build": {
"import": "./dist/baml_schema_build.js",
"require": "./dist/baml_schema_build.js"
}
},
"repository": {
"type": "git",
"url": "",
"directory": "baml-schema-wasm"
},
"author": "BAML",
"license": "Apache-2.0"
}