-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
53
54
55
56
{
"name": "@tejo/akso-client",
"version": "1.0.1",
"description": "A JavaScript client for AKSO",
"exports": {
".": {
"node": {
"module": "./dist/index.node.mjs",
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
},
"default": "./dist/index.browser.js"
}
},
"module": "dist/index.node.mjs",
"main": "dist/index.node.cjs",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"prepare": "npm run lint && npm run build",
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aksoeo/client-js.git"
},
"keywords": [
"akso"
],
"author": "Tutmonda Esperantista Junulara Organizo",
"license": "MIT",
"bugs": {
"url": "https://github.com/aksoeo/client-js/issues"
},
"homepage": "https://github.com/aksoeo/client-js#readme",
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"eslint": "^5.16.0",
"rollup": "^2.79.1"
},
"dependencies": {
"fetch-cookie": "^2.1.0",
"msgpack-lite": "^0.1.26",
"qrcode": "^1.5.0",
"rfc4648": "^1.5.0",
"xregexp": "^4.4.1"
}
}