-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "@shader-art/plugin-pointer-interactions",
"version": "0.0.4",
"description": "Pointer interactions for shader-art",
"repository": "shader-art/plugin-pointer-interactions",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"unpkg": "./dist/index.esm.js",
"files": [
"dist"
],
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "npm run build:types -s && npm run build:js -s && npm run build:cjs -s",
"build:types": "tsc -d --emitDeclarationOnly",
"build:js": "esbuild --format=esm --bundle --minify src/index.ts > dist/index.esm.js",
"build:cjs": "esbuild --format=cjs --bundle --minify src/index.ts > dist/index.cjs",
"lint": "npm run lint:js -s && npm run lint:package -s",
"lint:js": "eslint src",
"lint:package": "npx @skypack/package-check",
"test": "npm run lint -s && jest -c jest.config.cjs"
},
"keywords": [
"webgl",
"glsl",
"creative-coding"
],
"author": "Lea Rosema",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@wessberg/pointer-events": "^1.0.9",
"esbuild": "^0.8.44",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"jest-webgl-canvas-mock": "^0.2.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"dependencies": {
"@shader-art/plugin-base": "^0.1.1"
}
}