sakuga 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "sakuga",
3
+ "version": "0.0.1",
4
+ "description": "Create code animations",
5
+ "keywords": [
6
+ "bun",
7
+ "library",
8
+ "template"
9
+ ],
10
+ "homepage": "https://github.com/adelrodriguez/sakuga#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/adelrodriguez/sakuga/issues"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Adel Rodríguez",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/adelrodriguez/sakuga.git"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "type": "module",
25
+ "module": "src/index.ts",
26
+ "scripts": {
27
+ "build": "bunup",
28
+ "bump:deps": "bun update --interactive",
29
+ "check": "adamantite check",
30
+ "dev": "bunup --watch",
31
+ "fix": "adamantite fix",
32
+ "release": "changeset publish",
33
+ "init": "bun run --bun scripts/init.ts",
34
+ "test": "bun test",
35
+ "test:coverage": "bun test --coverage",
36
+ "test:watch": "bun test --watch",
37
+ "typecheck": "adamantite typecheck",
38
+ "version": "changeset version && bun run format",
39
+ "format": "adamantite format",
40
+ "analyze": "adamantite analyze"
41
+ },
42
+ "dependencies": {
43
+ "@effect/cli": "0.73.0",
44
+ "@effect/platform": "0.94.1",
45
+ "@effect/platform-node": "0.104.0",
46
+ "@napi-rs/canvas": "^0.1.88",
47
+ "effect": "3.19.14",
48
+ "mediabunny": "^1.28.0",
49
+ "node-webcodecs": "^1.0.0",
50
+ "shiki": "^3.21.0"
51
+ },
52
+ "devDependencies": {
53
+ "@changesets/cli": "2.29.8",
54
+ "@clack/prompts": "0.11.0",
55
+ "@types/bun": "1.3.5",
56
+ "@typescript/native-preview": "7.0.0-dev.20260108.1",
57
+ "adamantite": "^0.25.0",
58
+ "bunup": "0.16.17",
59
+ "knip": "5.80.1",
60
+ "marked": "^17.0.1",
61
+ "oxfmt": "0.23.0",
62
+ "oxlint": "1.38.0",
63
+ "oxlint-tsgolint": "0.10.1"
64
+ },
65
+ "peerDependencies": {
66
+ "typescript": "^5.9.3"
67
+ },
68
+ "packageManager": "bun@1.3.1"
69
+ }