-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
49
50
51
52
53
54
{
"name": "sweb-jsx",
"version": "0.0.1",
"description": "Small Web UI Framework: JSX Compiler",
"license": "MIT",
"author": "Pedro Henrique <phsilva.net@gmail.com>",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "pnpm run clean && pnpm run build:js && pnpm run build:types",
"clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\"",
"build:js": "rolldown --config",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"test": "node --import tsx --test",
"type-check": "tsc --project tsconfig.check.json",
"lint-check": "oxlint",
"format-check": "oxfmt --check",
"knip-check": "knip"
},
"dependencies": {
"@babel/helper-module-imports": "^7.28.6",
"@babel/plugin-syntax-jsx": "^7.28.6",
"@babel/types": "^7.29.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-module-imports": "^7.18.3",
"@types/node": "^25.5.0",
"knip": "^5.87.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"rolldown": "1.0.0-rc.9",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@babel/core": "^7.29.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.30.3"
}