-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "regl-line",
"version": "1.1.1",
"description": "2D line generator for Regl",
"author": "Fritz Lekschas",
"keywords": [
"line",
"2d",
"regl",
"webgl"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "npm run fix && tsc --build && vite build",
"deploy": "rm -rf docs; npm run build; cp teaser.gif ./docs/; gh-pages -d docs -t --git git",
"prepublishOnly": "npm run fix",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"pretest": "npm run fix",
"start": "vite",
"fix": "biome check --write ."
},
"dependencies": {
"gl-matrix": "^3.3.0",
"regl": "^2.1.0"
},
"peerDependencies": {
"regl": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"gh-pages": "^6.1.1",
"gl-matrix": "^3.3.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-html": "^3.2.2"
},
"homepage": "https://github.com/flekschas/regl-line",
"repository": {
"type": "git",
"url": "git://github.com/flekschas/regl-line.git"
},
"bugs": {
"url": "https://github.com/flekschas/regl-line/issues"
},
"sideEffects": false
}