-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 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
{
"name": "rip",
"version": "4.0.0",
"private": true,
"type": "module",
"description": "Zero-build, full-stack language for reactive UI, schemas, ORM, and server code.",
"workspaces": [
"packages/*",
"test/browser"
],
"scripts": {
"audit": "bun test/audit/runner.js",
"browser": "bun scripts/browser-bundle.mjs",
"corpus": "bun scripts/corpus.mjs",
"ext": "bun scripts/install-ext.mjs",
"global": "bun scripts/global.mjs",
"parser": "bun src/grammar/solar.rip -o src/parser.js src/grammar/grammar.rip",
"postinstall": "mkdir -p node_modules/.bin && ln -sf ../../bin/rip node_modules/.bin/rip",
"tailwind": "bun scripts/tailwind-bundle.mjs",
"test": "bun test --parallel --timeout 15000 test/rip.test.js test/lang test/mapping test/ui test/schema test/toolchain",
"test:all": "bun scripts/test-all.mjs",
"test:browser": "bun --cwd=test/browser run test:smoke",
"test:live": "bun --cwd=test/browser run test:live",
"test:rip": "bun test test/rip.test.js --timeout 15000",
"test:spawn": "bun test --timeout 15000 test/spawn",
"test:tui": "bun scripts/test-live.rip"
},
"bin": {
"rip": "bin/rip"
},
"catalog": {
"typescript": "7.0.2"
},
"devDependencies": {
"@tailwindcss/browser": "4.3.3",
"@types/bun": "1.4.2",
"typescript": "catalog:"
},
"overrides": {
"brace-expansion": "2.1.4"
}
}