-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
52
{
"name": "syd",
"version": "0.1.0",
"description": "",
"exports": {
".": {
"import": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"require": "./build/index.js"
}
},
"./worklet": {
"import": {
"types": "./src/sydWorklet.ts",
"default": "./build/sydWorklet.js"
}
}
},
"scripts": {
"build": "pnpm bun run scripts/build",
"dev:build": "pnpm run build -w",
"dev:serve": "python3 -m http.server",
"dev": "pnpm run \"/^dev:.*/\"",
"lint": "tsc",
"test": "pnpm bun test --todo",
"test:watch": "pnpm test --watch",
"prepare": "pnpm build -m"
},
"keywords": [],
"author": "dragoncoder047",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/audioworklet": "^0.0.87",
"@types/bun": "^1.3.2",
"@types/node": "^24.3.1",
"bun": "^1.2.21",
"esbuild": "^0.25.0",
"typescript": "^5.6.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"bun",
"esbuild"
]
},
"dependencies": {
"jsoncrush": "^1.1.8",
"lib0": "^0.2.117",
"microdiff": "^1.5.0"
}
}