-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@aitube/clap",
"module": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "0.2.3",
"description": "Types and helpers to manipulate .clap files",
"scripts": {
"build": "bun build ./src/index.ts --outfile=dist/index.js --external=yaml && 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"
},
"devDependencies": {
"bun-types": "latest",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"yaml": "^2.5.0"
},
"dependencies": {
"pure-uuid": "^1.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jbilcke-hf/aitube-clap.git"
},
"keywords": [
"Clapper.app",
"OpenClap",
"AiTube.at",
"AI cinema",
"file format",
"specification"
],
"author": "Julian Bilcke",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/**/*.d.ts"
]
}