-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "lua-redis-wasm",
"version": "1.5.0",
"description": "WebAssembly-based Redis Lua 5.1 script engine for Node.js - Execute Redis-compatible Lua scripts without a live Redis server",
"keywords": [
"redis",
"lua",
"wasm",
"webassembly",
"lua5.1",
"script",
"engine",
"eval",
"testing",
"sandbox"
],
"license": "MIT",
"author": "lua-redis-wasm contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/fatal10110/lua-redis-wasm.git"
},
"bugs": {
"url": "https://github.com/fatal10110/lua-redis-wasm/issues"
},
"homepage": "https://github.com/fatal10110/lua-redis-wasm#readme",
"main": "dist/index.node.cjs",
"module": "dist/index.node.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.mjs",
"node": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
},
"default": "./dist/index.node.mjs"
}
},
"sideEffects": false,
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"THIRD_PARTY_NOTICES.md",
"LICENSE"
],
"scripts": {
"build:wasm": "./wasm/build/docker-build.sh",
"smoke": "./wasm/build/docker-test.sh",
"build:ts": "rm -rf dist && rollup -c",
"build": "npm run build:wasm && npm run build:ts && node ./scripts/copy-wasm.mjs",
"test": "npm run build:wasm && node --test --import tsx test/**/*.test.ts",
"test:skip-wasm": "node --test --import tsx test/**/*.test.ts",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.19.6",
"rollup": "^4.55.1",
"rollup-plugin-dts": "^6.3.0",
"tslib": "^2.8.1",
"tsx": "^4.19.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=22"
}
}