UNPKG

2.06 kBJSONView Raw
1{
2 "name": "@rollup/plugin-wasm",
3 "version": "5.1.1",
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 "module": "dist/index.es.js",
15 "engines": {
16 "node": ">=10.0.0"
17 },
18 "scripts": {
19 "build": "rollup -c",
20 "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
21 "ci:lint": "pnpm run build && pnpm run lint",
22 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
23 "ci:test": "pnpm run test -- --verbose",
24 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
25 "lint:docs": "prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md",
26 "lint:js": "eslint --fix --cache src test --ext .js,.ts",
27 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
28 "prebuild": "del-cli dist",
29 "prepare": "pnpm run build",
30 "prepublishOnly": "pnpm run lint",
31 "pretest": "pnpm run build",
32 "test": "ava"
33 },
34 "files": [
35 "dist",
36 "types",
37 "README.md",
38 "LICENSE"
39 ],
40 "keywords": [
41 "rollup",
42 "plugin",
43 "webassembly",
44 "import",
45 "wasm",
46 "wast",
47 "wat",
48 "emscripten"
49 ],
50 "peerDependencies": {
51 "rollup": "^1.20.0 || ^2.0.0"
52 },
53 "devDependencies": {
54 "@rollup/plugin-typescript": "^5.0.2",
55 "del-cli": "^3.0.1",
56 "rollup": "^2.23.0",
57 "source-map": "^0.7.3"
58 },
59 "types": "types/index.d.ts",
60 "ava": {
61 "babel": {
62 "compileEnhancements": false
63 },
64 "files": [
65 "!**/fixtures/**",
66 "!**/helpers/**",
67 "!**/recipes/**",
68 "!**/types.ts"
69 ]
70 },
71 "contributors": [
72 "Jamen Marz <jamenmarz+gh@gmail.com>",
73 "Colin Eberhardt <colin.eberhardt@gmail.com>"
74 ]
75}