-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "polyly",
"author": "kinetictactic",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/KineticTactic/polyly.git"
},
"bugs": {
"url": "https://github.com/KineticTactic/polyly/issues"
},
"keywords": [
"webgl",
"webgl2",
"renderer",
"graphics",
"2d",
"canvas"
],
"version": "0.3.6",
"type": "module",
"files": [
"dist"
],
"main": "./dist/polyly.umd.cjs",
"module": "./dist/polyly.js",
"typings": "dist/polyly.d.ts",
"exports": {
".": {
"import": "./dist/polyly.js",
"require": "./dist/polyly.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && pnpm build-docs",
"preview": "vite preview",
"build-docs": "typedoc"
},
"devDependencies": {
"typedoc": "^0.25.2",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.0"
},
"dependencies": {
"twgl.js": "^5.5.3"
}
}