-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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
{
"name": "@embeddr/client-typescript",
"version": "0.2.0-alpha.3",
"description": "TypeScript API client for Embeddr",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./embeddr-api-types": {
"types": "./dist/embeddr-api-types.d.ts",
"import": "./dist/embeddr-api-types.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.3.4",
"@types/node": "^22.19.3",
"eslint": "^9.39.2",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"keywords": [
"embeddr",
"api",
"client",
"typescript"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/embeddr-net/client-typescript.git"
}
}