-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "@kloktun/react-utils",
"version": "0.0.9",
"description": "",
"source": "src/index.ts",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"dev": "NODE_ENV=dev; microbundle watch --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"pub": "yarn build; npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kloktun/react-utils.git"
},
"author": "Alexey Kloktunov",
"license": "ISC",
"bugs": {
"url": "https://github.com/kloktun/react-utils/issues"
},
"homepage": "https://github.com/kloktun/react-utils#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.11",
"babel-loader": "^8.3.0",
"microbundle": "^0.15.1",
"microbundle-crl": "^0.13.11",
"react": "^18.2.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^18.2.0"
}
}