-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
{
"name": "rubox",
"version": "1.0.0",
"description": "This README would normally document whatever steps are necessary to get the application up and running.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"setup": "npm install",
"test": "npm run test:unit && npx playwright test tests/system",
"test:unit": "vitest run && npm run test:ruby",
"test:ruby": "ruby tests/unit/ruby/expression_parser_test.rb && ruby tests/unit/ruby/method_filter_test.rb && ruby tests/unit/ruby/server_test.rb",
"lint": "eslint src",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sekito1107/Rubox.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sekito1107/Rubox/issues"
},
"homepage": "https://github.com/sekito1107/Rubox#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.2.3",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@ruby/wasm-wasi": "^2.8.1",
"monaco-editor": "^0.55.1",
"pako": "^2.1.0"
}
}