-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 846 Bytes
/
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
{
"name": "eszett",
"version": "0.4.0",
"description": "",
"author": "Manuel Reich",
"license": "ISC",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"main": "./dist/index.js"
},
"./swc": "./swc/target/wasm32-wasi/release/eszett.wasm"
},
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build && npm run build:swc",
"build": "tsc",
"build:swc": "cargo build --manifest-path ./swc/Cargo.toml --release --target=wasm32-wasi"
},
"files": [
"src",
"dist",
"swc/package.json",
"swc/target/wasm32-wasi/release/eszett.wasm"
],
"preferUnplugged": true,
"devDependencies": {
"typescript": "^5.4.5"
}
}