-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "@rosen-bridge/rollup-plugin-node-wasm",
"version": "0.1.0",
"description": "A rollup plugin to inline node-targeted wasm-pack wasm files",
"repository": "git+https://github.com/rosen-bridge/rollup-plugin-node-wasm.git",
"license": "ISC",
"author": "Rosen Team",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc --project ./tsconfig.build.json",
"coverage": "vitest run --coverage",
"lint": "eslint --fix . && npm run prettify",
"prettify": "prettier --write . --ignore-path ./.gitignore",
"test": "vitest",
"type-check": "tsc --noEmit",
"prepare": "husky install",
"release": "npm run build && npm publish --access public"
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-string": "^0.30.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitest/coverage-c8": "^0.26.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"typescript": "^4.9.4",
"vitest": "^0.26.2"
},
"peerDependencies": {
"rollup": "^3.22.0"
},
"engines": {
"node": ">=18.12.0"
},
"files": [
"dist"
]
}