-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "phoenix_ts",
"version": "1.7.14",
"description": "The unofficial TypeScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/tylerbarker/phoenix_ts.git"
},
"author": "Chris McCord <[email protected]> (https://www.phoenixframework.org)",
"contributors": ["Tyler Barker <[email protected]> (https://prototape.fm)"],
"devDependencies": {
"@happy-dom/global-registrator": "^14.10.1",
"@microsoft/api-extractor": "^7.43.2",
"@octokit/core": "^6.1.2",
"@octokit/types": "^13.5.0",
"@types/bun": "latest",
"mock-socket": "^9.3.1",
"sinon": "^17.0.2"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"scripts": {
"build:lib": "bun build.mjs",
"build:types": "bunx tsc && bunx api-extractor run --local",
"build": "bun run build:lib && bun run build:types"
},
"sideEffects": false
}