-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
45
46
47
48
49
50
51
52
{
"name": "@markusylisiurunen/optimistik",
"version": "0.0.10",
"description": "",
"bugs": {
"url": "https://github.com/markusylisiurunen/optimistik/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusylisiurunen/optimistik.git"
},
"license": "MIT",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"format": "prettier --write .",
"release": "npm run build && npm version patch && git push && git push --tags && npm publish",
"test": "jest"
},
"dependencies": {
"async-mutex": "^0.5.0",
"idb": "^8.0.0",
"immer": "^10.1.1",
"lodash.isequal": "^4.5.0",
"mitt": "^3.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.7",
"@types/lodash.isequal": "^4.5.8",
"@types/react": "^18.3.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.2.0"
}
}