-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
51
{
"name": "foundry-local-sdk",
"version": "0.4.0",
"description": "Foundry Local Manager Javascript SDK",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/Foundry-Local.git"
},
"author": "Microsoft Corporation <foundrylocaldevs@microsoft.com>",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "npx genversion -e src/version.ts && unbuild",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ./src/*",
"test": "vitest --run"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./browser": {
"require": "./dist/base.cjs",
"import": "./dist/base.mjs",
"types": "./dist/base.d.ts"
}
},
"dependencies": {
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@types/node": "^18.14.6",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.49.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"genversion": "^3.2.0",
"prettier": "^3.2.4",
"typescript": "^5.2.2",
"unbuild": "^3.5.0",
"vitest": "^3.1.3"
}
}