-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 958 Bytes
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
{
"name": "strates",
"version": "1.0.0",
"description": "A WIP web app to create and share [Crystal](https://crystal-lang.org/) code snippets.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:js": "esbuild src/frontend/editor.js --bundle --format=esm --outfile=public/assets/js/editor.js --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugolgs-dev/strates.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/hugolgs-dev/strates/issues"
},
"homepage": "https://github.com/hugolgs-dev/strates#readme",
"dependencies": {
"@codemirror/language": "^6.12.4",
"@codemirror/legacy-modes": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.3",
"codemirror": "^6.0.2"
},
"devDependencies": {
"esbuild": "^0.28.1"
}
}