-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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": "chem-rx",
"version": "0.0.23",
"description": "react state primitives powered by rx.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"test": "jest",
"clean": "rm -rf ./dist",
"build": "pnpm run prebuild && rollup -c",
"bump": "pnpm run build && pnpm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxu/chem-rx.git"
},
"author": "dxu",
"license": "MIT",
"bugs": {
"url": "https://github.com/dxu/chem-rx/issues"
},
"homepage": "https://github.com/dxu/chem-rx#readme",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-visualizer": "^5.9.2",
"rxjs": "^7.8.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"rxjs": "^7.5.7"
},
"exports": {
".": "./dist/index.js",
"./index.cjs.js": "./dist/index.cjs.js"
}
}