-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "wgpu-matrix",
"version": "3.3.0",
"description": "fast matrix math library for WebGPU",
"main": "dist/3.x/wgpu-matrix.module.js",
"module": "dist/3.x/wgpu-matrix.module.js",
"types": "dist/3.x/wgpu-matrix.d.ts",
"type": "module",
"sideEffects": false,
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly --declaration",
"build-ci": "npm run pre-push && node build/tools/prep-for-deploy.js",
"check": "npm run lint",
"check-ci": "npm run pre-push",
"docs": "typedoc --disableSources src/wgpu-matrix.ts",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"makeindex": "node build/tools/makeindex.js",
"pre-push": "npm run lint && npm run build && npm run test && npm run docs",
"rollup-watch": "rollup -c -w",
"start": "rollup -c rollup.config.js -w",
"test": "mocha test/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/wgpu-matrix.git"
},
"files": [
"dist/3.x/**"
],
"keywords": [
"webgpu",
"matrix",
"math",
"gpu",
"3d",
"2d",
"graphics"
],
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/wgpu-matrix/issues"
},
"homepage": "https://github.com/greggman/wgpu-matrix#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-one-variable-per-var": "^0.0.3",
"eslint-plugin-optional-comma-spacing": "^0.0.4",
"eslint-plugin-require-trailing-comma": "^0.0.1",
"express": "^4.21.1",
"mocha": "^10.7.3",
"rollup": "^4.24.1",
"showdown": "^2.1.0",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}