-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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": "@aitube/client",
"module": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "0.2.3",
"description": "Official API client for AiTube.at",
"scripts": {
"build": "bun build ./src/index.ts --outfile=dist/index.js --external=@aitube/clap && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo && bun run build:declaration",
"publish": "npm publish --access public",
"update": "rm -Rf node_modules && rm bun.lockb && bun i && bun run build"
},
"devDependencies": {
"bun-types": "latest",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@aitube/clap": "0.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jbilcke-hf/aitube-client.git"
},
"keywords": [
"Clapper.app",
"AiTube.at",
"OpenClap",
"AI cinema",
"file format",
"specification"
],
"author": "Julian Bilcke",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/**/*.d.ts"
],
"dependencies": {
"query-string": "^9.0.0"
}
}