-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "@openworkers/croner-wasm",
"version": "0.3.1",
"description": "WebAssembly bindings for the croner cron expression parser",
"type": "module",
"main": "./dist/node/croner_wasm.js",
"module": "./dist/croner_wasm.js",
"types": "./dist/croner_wasm.d.ts",
"exports": {
".": {
"types": "./dist/croner_wasm.d.ts",
"node": {
"require": "./dist/node/croner_wasm.js",
"import": "./dist/node/croner_wasm.js"
},
"browser": "./dist/croner_wasm.js",
"default": "./dist/bundler/croner_wasm.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "wasm-pack build --target web --out-dir pkg",
"build:node": "wasm-pack build --target nodejs --out-dir pkg-node",
"build:bundler": "wasm-pack build --target bundler --out-dir pkg-bundler",
"build:all": "./build-all.sh",
"prepublishOnly": "bun run build:all",
"test": "cargo test",
"test:js": "bun run build:node && node --test test.mjs",
"test:all": "cargo test && bun run test:js",
"test:wasm": "wasm-pack test --headless --firefox"
},
"repository": {
"type": "git",
"url": "https://github.com/openworkers/croner-wasm"
},
"keywords": [
"cron",
"parser",
"wasm",
"webassembly",
"scheduler",
"croner"
],
"author": "OpenWorkers",
"license": "MIT",
"devDependencies": {}
}