-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "@aitube/broadway",
"module": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "0.2.3",
"description": "Convert a script to a clap file",
"scripts": {
"test": "bun test --preload ./src/tests/setup.js",
"build": "bun build ./src/index.ts --outfile=dist/index.js --external=@aitube/clap --external=@aitube/colors && 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": {
"@aitube/io": "0.0.1",
"bun-types": "latest",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@aitube/clap": "0.2.3",
"@aitube/colors": "0.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jbilcke-hf/aitube-broadway.git"
},
"keywords": [
"OpenClap",
"AiTube",
"AI cinema",
"file format",
"specification"
],
"author": "Julian Bilcke",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/**/*.d.ts"
],
"dependencies": {
"@datagica/parse-entities": "^0.3.0",
"@datagica/parse-names": "^0.0.8",
"indexeddb-fs": "^2.1.5"
}
}