-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "frag-frog",
"version": "1.0.0",
"description": "A minimal WebGL wrapper library for fragment shaders.",
"scripts": {
"build": "parcel build --no-cache",
"test:watch": "web-test-runner --node-resolve --watch --coverage",
"test": "web-test-runner --node-resolve --coverage --playwright --browsers chromium firefox webkit"
},
"author": "Jan Benscheid",
"license": "MIT",
"keywords": [
"WebGL",
"OpenGL",
"Fragment Shader",
"Typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/junpls/frag-frog.git"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0",
"gts": "^5.0.1",
"parcel": "^2.9.3",
"sinon": "^17.0.1"
},
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"source": "src/lib/index.ts",
"files": [
"dist"
]
}