-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "source_map_parser_node",
"collaborators": [
"MasonChow <masonchat@foxmail.com>"
],
"description": "A WebAssembly package for source_map_parser",
"version": "0.2.1",
"license": "MIT",
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js"
},
"./wasm": "./pkg/source_map_parser_node_bg.wasm",
"./raw": {
"types": "./pkg/source_map_parser_node.d.ts",
"import": "./pkg/source_map_parser_node.js"
}
},
"scripts": {
"build:lib": "vite build",
"build": "bash ../../scripts/build-wasm-node.sh && vite build",
"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"
}
}