UNPKG

1.96 kBJSONView Raw
1{
2 "name": "@rollup/plugin-wasm",
3 "version": "5.0.0",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Import WebAssembly code with Rollup",
8 "license": "MIT",
9 "repository": "rollup/plugins",
10 "author": "Jamen Marz <jamenmarz+gh@gmail.com>",
11 "homepage": "https://github.com/rollup/plugins/tree/master/packages/wasm/#readme",
12 "bugs": "https://github.com/rollup/plugins/issues",
13 "main": "dist/index.js",
14 "engines": {
15 "node": ">=10.0.0"
16 },
17 "scripts": {
18 "build": "rollup -c",
19 "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
20 "ci:lint": "pnpm run build && pnpm run lint",
21 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
22 "ci:test": "pnpm run test -- --verbose",
23 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
24 "lint:docs": "prettier --single-quote --write README.md",
25 "lint:js": "eslint --fix --cache src test --ext .js,.ts",
26 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
27 "prebuild": "del-cli dist",
28 "prepare": "pnpm run build",
29 "prepublishOnly": "pnpm run lint",
30 "pretest": "pnpm run build",
31 "test": "ava"
32 },
33 "files": [
34 "dist",
35 "types",
36 "README.md",
37 "LICENSE"
38 ],
39 "keywords": [
40 "rollup",
41 "plugin",
42 "webassembly",
43 "import",
44 "wasm",
45 "wast",
46 "wat",
47 "emscripten"
48 ],
49 "peerDependencies": {
50 "rollup": "^1.20.0 || ^2.0.0"
51 },
52 "devDependencies": {
53 "@rollup/plugin-typescript": "^4.1.1",
54 "del-cli": "^3.0.0",
55 "rollup": "^2.0.0",
56 "source-map": "^0.7.3"
57 },
58 "ava": {
59 "files": [
60 "!**/fixtures/**",
61 "!**/helpers/**",
62 "!**/recipes/**",
63 "!**/types.ts"
64 ]
65 },
66 "contributors": [
67 "Jamen Marz <jamenmarz+gh@gmail.com>",
68 "Colin Eberhardt <colin.eberhardt@gmail.com>"
69 ],
70 "module": "dist/index.es.js",
71 "types": "types/index.d.ts"
72}