-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) 路 1.8 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) 路 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-adonis-transmit",
"version": "1.0.1",
"description": "React context and hooks for Adonis Transmit",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "prettier --write .",
"prepublishOnly": "npm run build",
"release": "./scripts/release.sh",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"peerDependencies": {
"react": ">=16.8.0",
"@adonisjs/transmit-client": ">=1.0.0"
},
"keywords": [
"react",
"adonis",
"transmit",
"sse",
"events"
],
"author": "Alexis Faure",
"repository": {
"type": "git",
"url": "https://github.com/alexisfaure/react-adonis-transmit"
},
"bugs": {
"url": "https://github.com/alexisfaure/react-adonis-transmit/issues"
},
"homepage": "https://github.com/alexisfaure/react-adonis-transmit#readme",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@adonisjs/transmit-client": "^1.0.0",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0"
}
}