-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "@d-id/client-sdk",
"private": false,
"version": "1.0.19-beta.128",
"type": "module",
"description": "d-id client sdk",
"repository": {
"type": "git",
"url": "https://github.com/de-id/agents-sdk"
},
"keywords": [
"d-id",
"sdk",
"client-sdk"
],
"license": "MIT",
"author": "d-id",
"files": [
"dist/*"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"dev": "vite",
"build": "node ./infra/build.js -m production",
"build:dev": "node ./infra/build.js -m development",
"deploy:prod": "node ./infra/deploy.js --version beta",
"preview": "vite preview",
"test-build": "node .infra/build.js -m development",
"build:docs": "typedoc"
},
"devDependencies": {
"@preact/preset-vite": "^2.8.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.24",
"commander": "^11.1.0",
"glob": "^10.3.10",
"preact": "^10.19.6",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
}
}