-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
{
"name": "source_map_parser_node",
"collaborators": [
"MasonChow <masonchat@foxmail.com>"
],
"description": "A WebAssembly package for source_map_parser",
"version": "0.2.2",
"license": "MIT",
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"build:lib": "vite build",
"build:types": "tsc -p tsconfig.json",
"build": "bash ../../scripts/build-wasm-node.sh && vite build && tsc -p tsconfig.json",
"pretest": "pnpm run build:lib",
"test": "pnpm pretest && vitest --run",
"test:coverage": "vitest --coverage",
"deploy": "pnpm run build && npm publish"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^2.0.5"
}
}