-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 890 Bytes
/
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
{
"name": "@zaings/salsa",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"test": "vitest"
},
"devDependencies": {
"@webgpu/types": "^0.1.44",
"eslint": "^8.0.0",
"prettier": "^2.0.0",
"typescript": "^5.5.3",
"vite": "^5.4.0"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"wasm-package": "file:wasm/pkg"
},
"files": [
"dist",
"src",
"wasm/pkg"
],
"description": "A 2D vector rendering library using WebGL & WASM, designed for seamless integration with web applications via TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"2d",
"vector",
"webgl",
"rust",
"wasm",
"typescript"
],
"author": "Zain Syed",
"license": "ISC"
}