-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "mlyn",
"version": "0.6.3",
"main": "lib/index.js",
"types": "types/index.d.ts",
"descrition": "reactive immutable state",
"author": "vaukalak",
"repository": {
"type": "git",
"url": "git+https://github.com/vaukalak/mlyn.git"
},
"files": [
"lib",
"types"
],
"exports": {
".": "./lib/index.js",
"./react": "./lib/react/index.js"
},
"scripts": {
"ts": "npx tsc",
"test": "npx jest",
"clean": "rm -rf lib && rm -rf types",
"build": "npx babel src --extensions '.ts,.tsx' --out-dir lib --source-maps && yarn ts",
"prepublish": "yarn clean && yarn build"
},
"peerDependencies": {
"react": "^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^27.0.1",
"jest": "^27.0.6",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-test-renderer": "18.0.0",
"typescript": "^4.3.5"
},
"workspaces": [
"packages/*"
],
"gitHead": "96a6c41df24c53c48f9f72573770babf94bd2dec"
}