-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "mrkv",
"packageManager": "yarn@3.2.1",
"description": "Small, fast and lightweight markov chain generator.",
"version": "1.1.0",
"main": "./index.js",
"types": "./types.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/splatterxl/mrkv.git"
},
"author": "Splatterxl <splatterxl@outlook.ie>",
"license": "MIT",
"bugs": {
"url": "https://github.com/splatterxl/mrkv/issues"
},
"homepage": "https://github.com/splatterxl/mrkv#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.1",
"@swc/core": "^1.3.26",
"@types/microtime": "^2.1.0",
"@types/node": "^18.0.0",
"@types/benchmark": "^2.1.2",
"benchmark": "^2.1.4",
"microtime": "^3.1.1",
"rollup": "^3.10.0",
"rollup-plugin-deno": "^1.0.1",
"rollup-plugin-swc3": "^0.8.0",
"size-limit": "^8.1.1"
},
"scripts": {
"bundle:web": "rollup --config rollup.web.mjs",
"bundle:deno": "rollup --config rollup.deno.mjs"
},
"size-limit": [
{
"path": "build/cjs.js",
"limit": "10 kB"
}
],
"dependencies": {}
}