-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "react-manatea",
"version": "1.0.0-alpha.1",
"sideEffects": false,
"source": "src/index.ts",
"umd:main": "dist/react-manatea.umd.js",
"main": "dist/react-manatea.js",
"module": "dist/react-manatea.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-manatea.modern.mjs",
"browser": "./dist/react-manatea.modern.mjs",
"require": "./dist/react-manatea.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"author": "Ayc0",
"repository": "git@github.com:Ayc0/Manatea.git",
"bugs": "https://github.com/Ayc0/Manatea/issues",
"homepage": "https://github.com/Ayc0/Manatea/tree/master/packages/react-manatea#readme",
"files": [
"dist"
],
"scripts": {
"start": "microbundle watch",
"build:clean": "rm -rf dist",
"build:action": "microbundle --name $npm_package_name --globals react=React",
"build": "yarn build:clean && yarn build:action"
},
"devDependencies": {
"@types/react": "^18.2.17",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"manatea": "workspace:*",
"react": ">=18.0.0"
}
}