-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
53
54
55
{
"name": "@multibase/js",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/js.esm.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/multibaseco/js.git"
},
"homepage": "https://multibase.co",
"license": "MIT",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "ROLLUP_ENV=development rollup -c --bundleConfigAsCjs"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/js-cookie": "^3.0.3",
"@types/node": "^20.2.5",
"@types/react": "^18.3.3",
"@types/ua-parser-js": "^0.7.38",
"@types/uuid": "^9.0.1",
"@types/web": "^0.0.119",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"js-cookie": "^3.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.1.3",
"ua-parser-js": "^1.0.36",
"user-agent-data-types": "^0.3.1",
"uuid": "^9.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
}