-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hydra-ts",
"license": "AGPL-3.0-or-later",
"version": "1.1.1",
"description": "A fork of ojack/hydra-synth in typescript, focusing on interoperability.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"index.ts"
],
"sideEffects": false,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"dev": "vite",
"coverage": "vitest run --coverage",
"prepack": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/folz/hydra-ts.git"
},
"keywords": [
"webgl",
"regl",
"graphics",
"livecoding",
"synth"
],
"author": "folz",
"bugs": {
"url": "https://github.com/folz/hydra-ts/issues"
},
"homepage": "https://github.com/folz/hydra-ts#readme",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"regl": ">=1.3.9 <3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"hydra-synth": "1.4.0",
"prettier": "^3.8.4",
"regl": "^2.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.0",
"vitest": "^4.1.8"
}
}