-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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
{
"name": "moon-bash",
"version": "0.1.0",
"description": "Zero-dependency pure-memory POSIX Shell sandbox written in MoonBit",
"keywords": [
"bash",
"moonbit",
"posix",
"sandbox",
"shell"
],
"license": "Apache-2.0",
"files": [
"dist/"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"browser": "./dist/browser.mjs",
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./browser": {
"types": "./dist/browser.d.mts",
"import": "./dist/browser.mjs"
},
"./executor": {
"types": "./dist/executor.d.mts",
"import": "./dist/executor.mjs"
}
},
"scripts": {
"build:mbt": "moon -C src build --target js --release",
"build:ts": "vp pack",
"build": "moon -C src build --target js --release && vp pack",
"build:publish": "moon -C src build --target js --release && MOONBASH_PACK_MINIFY=1 vp pack",
"build:website": "moon -C src build --target js --release && vp build -c vite.website.config.ts",
"test:mbt": "moon -C src test",
"test": "moon -C src build --target js --release && vp test run",
"test:comparison": "moon -C src build --target js --release && vp test run tests/comparison/",
"test:comparison:record": "RECORD_FIXTURES=1 vp run test:comparison",
"test:compat:types": "tsc -p tsconfig.compat.json",
"test:safe": "moon -C src build --target js --release && bash scripts/test-safe.sh",
"test:watch": "moon -C src build --target js --release && vp test watch",
"check": "moon -C src check",
"serve:website": "vp preview -c vite.website.config.ts --port 4173 --strictPort"
},
"dependencies": {
"pyodide": "^0.29.3",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"fast-check": "^4.7.0",
"typescript": "^6.0.3",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.33.0"
}