-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
57
58
{
"name": "@unomaas/the-one-sdk",
"version": "1.0.1",
"description": "A lightweight SDK demo for the Lord of the Rings API (https://the-one-api.dev)",
"access": "public",
"main": "dist/index.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types.d.ts",
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unomaas/the-one-sdk.git"
},
"keywords": [
"lotr",
"lord of the rings",
"sdk",
"api",
"wrapper",
"typescript"
],
"author": "Ryan Maas",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/index.es.js": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/index.umd.js": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/unomaas/the-one-sdk/issues"
},
"homepage": "https://github.com/unomaas/the-one-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.1.0"
},
"dependencies": {
"isomorphic-unfetch": "^4.0.2"
}
}