-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "rollup-plugin-cpp",
"version": "1.0.0",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./types/index.d.ts",
"type": "module",
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/es/index.js",
"default": "./dist/cjs/index.js"
},
"scripts": {
"build": "rollup -c && npx tsc",
"ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "pnpm build && pnpm lint",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "pnpm test -- --verbose",
"prebuild": "del-cli dist",
"prerelease": "pnpm build",
"pretest": "pnpm build",
"release": "pnpm --workspace-root plugin:release --pkg $npm_package_name",
"test": "ava"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-wasm": "^6.1.3",
"@rollup/pluginutils": "^5.0.3",
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"basic-event-wasi": "github:mwszekely/basic-event-wasi",
"binaryen": "^114.0.0",
"magic-string": "^0.30.2",
"map-and-set-extensions": "github:mwszekely/map-and-set-extensions",
"rollup": "^3.28.0",
"rollup-plugin-data": "github:mwszekely/rollup-plugin-data",
"setup-cpp": "^0.33.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"wabt": "^1.0.32"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.4.8",
"serve": "^14.2.0"
}
}