-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@seamapi/types",
"version": "1.338.1",
"description": "TypeScript types for the Seam API.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./connect": {
"import": {
"types": "./connect.d.ts",
"default": "./connect.js"
},
"require": {
"types": "./dist/connect.d.cts",
"default": "./dist/connect.cjs"
}
},
"./devicedb": {
"import": {
"types": "./devicedb.d.ts",
"default": "./devicedb.js"
},
"require": {
"types": "./dist/devicedb.d.cts",
"default": "./dist/devicedb.cjs"
}
}
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/seamapi/types",
"bugs": "https://github.com/seamapi/types/issues",
"repository": "seamapi/types",
"license": "MIT",
"author": {
"name": "Seam Labs, Inc.",
"email": "devops@getseam.com"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"connect.js",
"connect.js.map",
"connect.d.ts",
"devicedb.js",
"devicedb.js.map",
"devicedb.d.ts",
"dist",
"lib",
"src"
],
"scripts": {
"build": "npm run build:entrypoints",
"prebuild": "concurrently --raw --group 'tsx src/index.ts' 'tsx src/connect.ts' 'tsx src/devicedb.ts'",
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./connect.js' 'node ./devicedb.js'",
"build:entrypoints": "npm run build:ts",
"postbuild:entrypoints": "tsup",
"build:ts": "tsc --project tsconfig.build.json",
"prebuild:ts": "del 'index.*' 'connect.*' 'devicedb.*' lib",
"postbuild:ts": "tsc-alias --replacer ./tsc-alias-replacer.cjs --project tsconfig.build.json",
"typecheck": "tsc",
"docs:build": "typedoc",
"blueprint": "tsx ./blueprint.ts",
"preblueprint": "mkdirp tmp",
"lint": "eslint --ignore-path .gitignore .",
"prelint": "prettier --check --ignore-path .gitignore .",
"postversion": "git push --follow-tags",
"format": "prettier --write --ignore-path .gitignore .",
"preformat": "patch-package",
"postformat": "eslint --ignore-path .gitignore --fix ."
},
"engines": {
"node": ">=18.12.0",
"npm": ">= 9.0.0"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"devDependencies": {
"@seamapi/blueprint": "^0.34.0",
"@types/node": "^20.8.10",
"concurrently": "^8.2.0",
"del-cli": "^5.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"mkdirp": "^3.0.1",
"patch-package": "^8.0.0",
"prettier": "^3.0.0",
"tsc-alias": "^1.8.2",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typedoc": "^0.25.2",
"typescript": "^5.1.0",
"zod": "^3.21.4"
}
}