-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 1.93 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
64
65
66
67
68
69
70
71
72
73
{
"name": "vite-plugin-wasm",
"version": "3.3.0",
"description": "Add WebAssembly ESM integration (aka. Webpack's `asyncWebAssembly`) to Vite and support `wasm-pack` generated modules.",
"types": "./exports/require.d.cts",
"main": "./exports/require.cjs",
"module": "./exports/import.mjs",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./exports/import.mjs"
},
"require": {
"types": "./exports/require.d.cts",
"default": "./exports/require.cjs"
}
},
"repository": "https://github.com/Menci/vite-plugin-wasm",
"author": "Menci <[email protected]>",
"license": "MIT",
"keywords": [
"vite",
"plugin",
"wasm",
"webassembly",
"wasm-pack",
"es-modules",
"modules"
],
"scripts": {
"build": "tsc",
"test": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage --forceExit",
"format": "prettier --write '**/*.{mjs,cjs,js,mts,cts,ts}'",
"pretest": "yarn --cwd e2e && playwright install firefox"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@jest/types": "^29.6.3",
"@jsona/openapi": "^0.2.5",
"@syntect/wasm": "^0.0.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.19.8",
"mime": "^4.0.0",
"express": "^4.18.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"playwright": "1.23.3",
"playwright-core": "1.23.3",
"prettier": "^3.1.0",
"terser": "^5.26.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "5",
"wait-port": "^1.1.0"
},
"peerDependencies": {
"vite": "^2 || ^3 || ^4 || ^5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"/dist",
"/exports"
]
}