-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "playground.wcc.dev",
"version": "1.0.0",
"description": "Playground repository for wcc.dev",
"keywords": [
"REPL",
"WC Compiler",
"WCC",
"playground"
],
"author": "Owen Buckley <owen@thegreenhouse.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/playground.wcc.dev.git"
},
"type": "module",
"scripts": {
"dev": "greenwood develop",
"build": "NODE_OPTIONS='--import @greenwood/cli/register' greenwood build",
"serve": "greenwood serve",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"check": "tsgo --ignoreConfig --noEmit --module esnext --skipLibCheck",
"prepare": "husky",
"postinstall": "patch-package"
},
"dependencies": {
"geist": "^1.2.0",
"htmlfy": "^1.0.1",
"monaco-editor": "^0.55.1",
"monaco-themes": "^0.4.8",
"open-props": "^1.7.23"
},
"devDependencies": {
"@greenwood/cli": "~0.34.0-alpha.6",
"@greenwood/plugin-css-modules": "^0.34.0-alpha.6",
"@greenwood/plugin-import-jsx": "^0.34.0-alpha.6",
"@greenwood/plugin-import-raw": "^0.34.0-alpha.6",
"@typescript/native-preview": "^7.0.0-dev.20260506.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"patch-package": "^8.0.1",
"typescript": "^6.0.2"
}
}