forked from Menci/vite-plugin-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "vite-plugin-wasm",
"version": "2.1.0",
"description": "Add WebAssembly ESM integration (aka. Webpack's `asyncWebAssembly`) to Vite and support `wasm-pack` generated modules.",
"main": "dist/index.js",
"exports": {
"import": "./exports/import.mjs",
"require": "./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,ts}'",
"pretest": "playwright install firefox"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@syntect/wasm": "^0.0.4",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.5",
"@vitejs/plugin-legacy": "^2.0.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"express": "^4.18.1",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
"playwright": "^1.23.3",
"prettier": "^2.7.1",
"terser": "^5.14.2",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"vite": "3",
"vite-plugin-top-level-await": "^1.1.0"
},
"dependencies": {},
"peerDependencies": {
"vite": "^3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"/dist",
"/exports"
]
}