-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@elide-dev/framework",
"version": "1.0.0-alpha10",
"private": true,
"packageManager": "[email protected]",
"lint-staged": {
"not-packages/*": "pnpm exec prettier --ignore-unknown"
},
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 edge versions",
"last 3 safari versions"
],
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"workspaces": [
"packages/base",
"packages/core",
"packages/graalvm",
"packages/test",
"packages/cli",
"tools/scripts",
"tools/plugin/gradle-plugin"
],
"dependencies": {
"browserslist": "4.23.1",
"cssnano": "7.0.4",
"google-protobuf": "3.21.2",
"jszip": "3.10.1",
"postcss": "8.4.39",
"preact": "10.22.1",
"react": "19.0.0-rc.0",
"react-dom": "19.0.0-rc.0",
"typescript": "5.5.3",
"web-streams-polyfill": "3.3.3"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@mdx-js/esbuild": "3.0.1",
"@prettier/plugin-xml": "3.4.1",
"@types/google-protobuf": "3.15.12",
"@types/node": "22.5.5",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"commitlint": "19.3.0",
"esbuild": "0.23.0",
"eslint": "8.57.0",
"husky": "9.1.5",
"lint-staged": "15.2.7",
"postcss-cli": "11.0.0",
"prettier": "3.3.3",
"prettier-plugin-java": "2.6.0",
"prettier-plugin-properties": "0.3.0",
"prettier-plugin-sh": "0.14.0",
"prettier-plugin-toml": "2.0.1",
"readable-stream": "4.5.2"
},
"resolutions": {
"jszip": "3.10.1",
"node-fetch": "3.3.2"
},
"scripts": {
"build": "make build",
"test": "make test",
"upgrade-node": "yarn upgrade-interactive",
"upgrade-gradle": "gradle-upgrade-interactive",
"prettier": "prettier",
"husky": "husky",
"lint": "prettier --write . --plugin=prettier-plugin-sh --plugin=prettier-plugin-toml --plugin=prettier-plugin-properties --plugin=prettier-plugin-java",
"lint:check": "prettier --check . --plugin=prettier-plugin-sh --plugin=prettier-plugin-toml --plugin=prettier-plugin-properties --plugin=prettier-plugin-java"
}
}