-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "maxminddb-wasm",
"version": "2.0.3",
"publishConfig": {
"access": "public"
},
"main": "./bundler/index.js",
"types": "./bundler/index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"build": "tsx cli.ts --build-rs && pnpm run \"/^build:.*/\"",
"build:node": "tsx cli.ts --build-js --target nodejs",
"build:browser": "tsx cli.ts --build-js --target web",
"build:bundler": "tsx cli.ts --build-js --target bundler",
"build:node-module": "tsx cli.ts --build-js --target experimental-nodejs-module",
"test": "tsx cli.ts --fetch-test-artifacts && pnpm run \"/^test:.*/\"",
"test-ci": "tsx cli.ts --fetch-test-artifacts && pnpm run --aggregate-output -r --no-bail --report-summary \"/test:.*/\"",
"release": "tsx scripts/release.ts",
"publish-ci": "tsx scripts/publish-ci.ts",
"postinstall": "tsx cli.ts --install-bindgen"
},
"repository": {
"type": "git",
"url": "https://github.com/josh-hemphill/maxminddb-wasm.git"
},
"type": "module",
"contributors": [
{
"name": "JoshuaHemphill",
"url": "https://joshuahemphill.com",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/josh-hemphill/maxminddb-wasm/issues"
},
"homepage": "https://github.com/josh-hemphill/maxminddb-wasm",
"devDependencies": {
"@types/node": "22.13.4",
"@types/fs-extra": "11.0.4",
"acorn": "8.14.0",
"ast-types": "0.16.1",
"badge-maker": "4.1.0",
"bumpp": "10.0.3",
"recast": "0.23.9",
"semantic-release": "^24",
"semantic-release-gitmoji": "^1",
"semantic-release-license": "^1",
"tsx": "^4.19.2",
"wasm-pack": "0.13.1",
"zx": "8.3.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"bun",
"deno",
"esbuild",
"msw",
"sharp",
"wasm-pack",
"workerd"
]
},
"files": [
"node",
"browser",
"bundler",
"node-module",
"LICENSE",
"README.md"
]
}