This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@rivet-gg/common",
"version": "0.1.0",
"scripts": {
"prepack": "yarn build",
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.es.json",
"build:types": "tsc -p tsconfig.types.json",
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
"test": "exit 0"
},
"browser": {
"node-fetch": false,
"./dist-cjs/middleware.js": "./dist-cjs/middleware.browser.js",
"./dist-es/middleware.js": "./dist-es/middleware.browser.js",
"./dist-types/middleware.js": "./dist-types/middleware.browser.js"
},
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
"author": {
"name": "Rivet SDK for JavaScript",
"url": "https://docs.rivet.gg/"
},
"license": "ISC",
"dependencies": {
"tslib": "^2.3.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node-fetch": "^2.6.1",
"@aws-sdk/abort-controller": "3.78.0",
"@aws-sdk/protocol-http": "3.78.0",
"@types/node": "^10.0.0",
"concurrently": "7.0.0",
"downlevel-dts": "0.7.0",
"rimraf": "3.0.2",
"typedoc": "0.23.7",
"typescript": "~4.6.2"
},
"typesVersions": {
"<4.0": {
"dist-types/*": [
"dist-types/ts3.4/*"
]
}
},
"files": [
"dist-*"
],
"homepage": "https://github.com/rivet-gg/rivet-sdk-js",
"repository": {
"type": "git",
"url": "https://github.com/rivet-gg/rivet-sdk-js.git"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"printWidth": 110,
"endOfLine": "lf",
"arrowParens": "avoid",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"jsxSingleQuote": true
}
}