forked from shuding/yoga-wasm-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
{
"name": "@bitfrost/yoga-wasm-web",
"version": "0.3.3",
"type": "module",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"asm": [
"dist/asm.d.ts"
],
"auto": [
"dist/auto.d.ts"
]
}
},
"exports": {
"./package.json": "./package.json",
"./dist/yoga.wasm": "./dist/yoga.wasm",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./asm": {
"types": "./dist/asm.d.ts",
"default": "./dist/asm.js"
},
"./auto": {
"types": "./dist/auto.d.ts",
"bun": "./dist/bun.js",
"browser": "./dist/browser.js",
"default": "./dist/node.js"
}
},
"scripts": {
"build": "make && rollup -c && cp ./dist/yoga.wasm ./dist/yoga.bun",
"typecheck": "tsc --noEmit",
"test": "pnpm test:asm && pnpm test:wasm",
"test:asm": "ASM=true vitest run --dir ./test",
"test:wasm": "vitest run --dir ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/bitfrost/yoga-wasm-web"
},
"license": "MIT",
"files": [
"dist",
"package.json",
"LICENSE",
"yoga/javascript/src_js/generated"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@swc/core": "^1.3.36",
"rollup": "^3.17.0",
"rollup-plugin-swc3": "^0.8.0",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}