forked from ryansolid/mobx-jsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1000 Bytes
/
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
{
"name": "mobx-jsx",
"description": "Raw MobX performance without the restraints of a Virtual DOM",
"version": "0.15.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/mobx-jsx"
},
"module": "dist/index.js",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c && ncp ./src/client.d.ts ./types/client.d.ts && ncp ./src/jsx.d.ts ./types/jsx.d.ts && tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-typescript": "7.10.4",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-node-resolve": "11.2.0",
"dom-expressions": "0.27.0",
"hyper-dom-expressions": "0.27.0",
"lit-dom-expressions": "0.27.0",
"mobx": "^6.1.8",
"ncp": "2.0.0",
"rollup": "^2.41.4",
"typescript": "4.1.3"
},
"peerDependencies": {
"mobx": "> 6.0.0"
}
}