-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "cement-jsx",
"version": "0.0.4",
"description": "React(ivity)-less JSX purely for SSR",
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs && pnpm run build:types",
"build:esm": "esbuild ./src/index.ts --bundle --sourcemap --minify --outfile=dist/index.mjs --format=esm",
"build:cjs": "esbuild ./src/index.ts --bundle --sourcemap --minify --outfile=dist/index.cjs --format=cjs",
"build:types": "tsup ./src/index.ts --dts-only --out-dir dist",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sexnine/cement-jsx.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"author": "sexnine",
"license": "MIT",
"bugs": {
"url": "https://github.com/sexnine/cement-jsx/issues"
},
"homepage": "https://github.com/sexnine/cement-jsx#readme",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"esbuild": "^0.20.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}