-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (123 loc) · 4.28 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "lestin",
"version": "0.2.2",
"description": "Vanilla JSX, No Virtual-DOM",
"keywords": [
"jsx",
"tsx",
"dom",
"vdom",
"virtual-dom",
"js",
"ts",
"babel",
"react",
"jsx-runtime"
],
"homepage": "https://github.com/movahhedi/lestin",
"bugs": "https://github.com/movahhedi/lestin/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/movahhedi/lestin.git",
"directory": "/"
},
"author": {
"name": "Shahab Movahhedi",
"email": "dev@shmovahhedi.com",
"url": "https://shmovahhedi.com/"
},
"packageManager": "yarn@4.3.0",
"type": "module",
"source": "jsx-runtime/src/index.js",
"main": "jsx-runtime/dist/jsx-runtime.js",
"module": "jsx-runtime/dist/jsx-runtime.mjs",
"types": "jsx-runtime/src/index.d.ts",
"typings": "jsx-runtime/src/index.d.ts",
"umd:main": "jsx-runtime/dist/jsx-runtime.umd.js",
"unpkg": "jsx-runtime/dist/jsx-runtime.js",
"exports": {
".": {
"types": "./jsx-runtime/src/index.d.ts",
"default": "./jsx-runtime/dist/jsx-runtime.mjs",
"browser": "./jsx-runtime/dist/jsx-runtime.mjs",
"umd": "./jsx-runtime/dist/jsx-runtime.umd.js",
"import": "./jsx-runtime/dist/jsx-runtime.mjs",
"require": "./jsx-runtime/dist/jsx-runtime.js"
},
"./jsx-runtime": {
"types": "./jsx-runtime/src/index.d.ts",
"default": "./jsx-runtime/dist/jsx-runtime.mjs",
"browser": "./jsx-runtime/dist/jsx-runtime.mjs",
"umd": "./jsx-runtime/dist/jsx-runtime.umd.js",
"import": "./jsx-runtime/dist/jsx-runtime.mjs",
"require": "./jsx-runtime/dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./jsx-dev-runtime/src/index.d.ts",
"default": "./jsx-dev-runtime/dist/jsx-dev-runtime.mjs",
"browser": "./jsx-dev-runtime/dist/jsx-dev-runtime.mjs",
"umd": "./jsx-dev-runtime/dist/jsx-dev-runtime.umd.js",
"import": "./jsx-dev-runtime/dist/jsx-dev-runtime.mjs",
"require": "./jsx-dev-runtime/dist/jsx-dev-runtime.js"
},
"./jsx-runtime/src/index.js": "./jsx-runtime/src/index.js",
"./jsx-runtime/src/index.d.ts": "./jsx-runtime/src/index.d.ts",
"./jsx-runtime/src/global.d.ts": "./jsx-runtime/src/global.d.ts",
"./jsx-dev-runtime/src/index.js": "./jsx-dev-runtime/src/index.js",
"./jsx-dev-runtime/src/index.d.ts": "./jsx-dev-runtime/src/index.d.ts",
"./package.json": "./package.json"
},
"files": [
"src",
"dist",
"jsx-runtime/src",
"jsx-runtime/dist",
"jsx-runtime/package.json",
"jsx-dev-runtime/src",
"jsx-dev-runtime/dist",
"jsx-dev-runtime/package.json"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "npx rollup -c",
"watch": "npx rollup -c --watch",
"dev": "yarn watch",
"build-microbundle": "yarn build:jsx-microbundle && yarn build:dev-microbundle",
"watch-microbundle": "concurrently -c \"bgBlue,bgGreen\" \"npm:watch:jsx-microbundle\" \"npm:watch:dev-microbundle\"",
"build:jsx-microbundle": "microbundle build --tsconfig tsconfig.json --raw true --no-generateType -f modern,esm,cjs,umd --cwd \"jsx-runtime\"",
"build:dev-microbundle": "microbundle build --tsconfig tsconfig.json --raw true --no-generateType -f modern,esm,cjs,umd --cwd \"jsx-dev-runtime\"",
"watch:jsx-microbundle": "microbundle watch --tsconfig tsconfig.json --raw true --no-generateType -f modern,esm,cjs,umd --cwd \"jsx-runtime\"",
"watch:dev-microbundle": "microbundle watch --tsconfig tsconfig.json --raw true --no-generateType -f modern,esm,cjs,umd --cwd \"jsx-dev-runtime\"",
"dev-microbundle": "microbundle watch -f modern,esm,cjs,umd --cwd \"jsx-runtime\"",
"update": "npx npm-check-updates -i"
},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"concurrently": "^8.2.2",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-perfectionist": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"microbundle": "^0.15.1",
"npm-check-updates": "^17.1.0",
"prettier": "^3.3.3",
"prettier-eslint-cli": "^8.0.1",
"prop-types": "^15.8.1",
"rimraf": "^6.0.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"tsx-dom-types": "^2.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}