-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
{
"name": "@seracio/plugnplay",
"keywords": [
"react",
"rxjs"
],
"version": "6.0.1",
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/plugnplay.cjs",
"default": "./dist/plugnplay.modern.js"
},
"source": "src/index.tsx",
"main": "dist/plugnplay.cjs",
"module": "dist/plugnplay.module.js",
"unpkg": "dist/plugnplay.umd.js",
"repository": "https://github.com/seracio/plugnplay.git",
"author": "nicolasmondon <nicolasmondon@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": ">= 16.7.0",
"rxjs": ">= 6.0.0"
},
"devDependencies": {
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"jest": "^26.6.3",
"microbundle": "^0.15.1",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^6.6.3",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"scripts": {
"test": "jest",
"prepublishOnly": "rm -rf dist && npm run build",
"build": "rm -rf dist && microbundle --jsx=React.createElement --sourcemap=false",
"dev": "microbundle watch"
}
}