-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 923 Bytes
/
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
{
"name": "weact",
"version": "0.0.1",
"type": "module",
"description": "A degenerate, drop-in replacement for React and its JSX pragma.",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"license": "MIT",
"scripts": {
"prepare": "install-peers",
"build": "microbundle build --globals react=React,react/jsx-runtime=ReactJSX,react/jsx-dev-runtime=ReactJSXDev",
"test": "yarn build && yalc publish --push"
},
"exports": {
".": "./src/index.ts",
"./jsx-runtime": "./src/jsx-runtime/index.ts",
"./jsx-dev-runtime": "./src/jsx-dev-runtime/index.ts",
"./compat": "./src/compat/index.ts"
},
"dependencies": {
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">= 17.x",
"react-dom": ">= 17.x"
},
"devDependencies": {
"install-peers-cli": "^2.2.0",
"microbundle": "^0.15.1",
"yalc": "latest"
}
}