forked from ryansolid/dom-expressions
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 716 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 716 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
{
"name": "solid-jsx-oxc-monorepo",
"description": "High-performance OXC-based JSX compiler for SolidJS",
"version": "0.36.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid-jsx-oxc"
},
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "rimraf node_modules packages/*/node_modules packages/*/dist",
"test": "npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"jsx-sync-types": "node packages/dom-expressions/src/jsx-update.mjs"
},
"devDependencies": {
"rimraf": "^5.0.0",
"typescript": "~5.3.3"
}
}