-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "jynxs",
"version": "0.2.1",
"description": "Lightweight React-like JSX runtime with the basics.",
"keywords": [
"react",
"jsx",
"jsx-runtime",
"jsx-renderer",
"tsx",
"tsx-runtime",
"tsx-renderer"
],
"homepage": "https://github.com/itsjavi/jynxs#readme",
"bugs": {
"url": "https://github.com/itsjavi/jynxs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsjavi/jynxs.git"
},
"license": "MIT",
"author": "Javi Aguilar",
"type": "module",
"exports": {
".": {
"import": "./dist/bundle.js",
"require": "./dist/bundle.js"
},
"./jsx-runtime": {
"import": "./dist/bundle.js",
"require": "./dist/bundle.js"
},
"./jsx-dev-runtime": {
"import": "./dist/bundle.js",
"require": "./dist/bundle.js"
}
},
"main": "./dist/bundle.js",
"module": "./dist/bundle.js",
"types": "./dist/bundle.d.ts",
"files": [
"dist/bundle.js",
"dist/bundle.d.ts",
"dist/bundle.js.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && vite build && pnpm build:runtime",
"build:runtime": "tsup src/runtime/bundle.ts --dts --format=esm --minify --sourcemap",
"dev": "vite",
"format": "pnpm lint:fix",
"lint": "publint && prettier --check .",
"lint:fix": "sort-package-json && prettier --write .",
"prepare": "sort-package-json",
"prepublishOnly": "pnpm lint && pnpm build",
"preview": "vite preview",
"start": "pnpm preview"
},
"devDependencies": {
"prettier": "^3.3.3",
"publint": "^0.2.10",
"sort-package-json": "^2.10.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.3"
},
"packageManager": "[email protected]"
}