-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "@shader-art/plugin-uniform",
"version": "0.2.3",
"description": "uniform variables with dat.gui for shader-art",
"repository": "shader-art/plugin-uniform",
"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"
},
"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/**/*.ts",
"lint:package": "npx @skypack/package-check",
"test": "jest -c jest.config.cjs",
"prepublishOnly": "npm run lint -s && npm test -s && npm run build"
},
"keywords": [
"webgl"
],
"author": "Lea Rosema",
"license": "MIT",
"devDependencies": {
"@shader-art/plugin-base": "^0.1.1",
"@skypack/package-check": "^0.2.2",
"@types/dat.gui": "^0.7.6",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"esbuild": "^0.11.5",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"jest-webgl-canvas-mock": "^0.2.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"dat.gui": "^0.7.7"
}
}