forked from folz/hydra-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·87 lines (87 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·87 lines (87 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hydra-ts",
"license": "AGPL-3.0-only",
"version": "1.0.0",
"description": "A TypeScript-first, modern reimagining of Hydra-Synth for robust library usage.",
"type": "module",
"main": "./dist/hydra-ts.umd.cjs",
"module": "./dist/hydra-ts.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/hydra-ts.js",
"require": "./dist/hydra-ts.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md,json,yaml,yml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jokroese/hydra-ts.git"
},
"keywords": [
"webgl",
"regl",
"graphics",
"livecoding",
"synth",
"typescript",
"generative-art"
],
"author": "Jo Kroese",
"bugs": {
"url": "https://github.com/jokroese/hydra-ts/issues"
},
"homepage": "https://github.com/jokroese/hydra-ts#readme",
"dependencies": {
"regl": "^2.1.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.2.0",
"@vitest/ui": "^1.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.7.0",
"vite-plugin-glsl": "^1.2.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}