-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@artichokeruby/playground",
"version": "0.14.0",
"type": "module",
"private": true,
"description": "Artichoke Ruby Wasm Playground",
"keywords": [
"programming language",
"scripting",
"ruby",
"rust",
"wasm"
],
"homepage": "https://artichoke.run",
"bugs": "https://github.com/artichoke/playground/issues",
"license": "MIT",
"author": "Ryan Lopopolo <rjl@hyperbo.la> (https://hyperbo.la/)",
"contributors": [
"Ryan Lopopolo <rjl@hyperbo.la> (https://hyperbo.la/)"
],
"repository": "github:artichoke/playground",
"dependencies": {
"@artichokeruby/logo": "^0.12.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"monaco-editor": "^0.52.0"
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/gtag.js": "0.0.20",
"@types/node": "^22.10.1",
"eslint": "9.16.0",
"eta": "^3.5.0",
"globals": "^15.12.0",
"prettier": "3.4.1",
"rimraf": "^6.0.1",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite": "^6.0.1"
},
"scripts": {
"dev": "vite dev",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"build:debug:wasm": "ruby scripts/build-wasm.rb",
"build:release:wasm": "ruby scripts/build-wasm.rb --release",
"clean": "rimraf dist",
"copy:assets": "rimraf \"src/public/!(*.txt|site.webmanifest)\" && node copy-assets.mjs",
"fmt": "prettier --write \"**/*\"",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
}
}