-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 966 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 966 Bytes
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
{
"name": "@infinium/hyper",
"version": "1.0.0",
"description": "",
"private": false,
"author": "Infinium LLC.",
"license": "MIT",
"repository": "https://github.com/Infinium8/Hyper",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@types/uuid": "^8.3.4",
"cross-env": "^7.0.2",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^3.4.1",
"typescript": "^3.7.5"
},
"files": [
"dist"
],
"dependencies": {
"axios": "^0.24.0",
"moment": "^2.29.1"
}
}