-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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": "mraph",
"version": "0.0.2-dev.3",
"description": "A poor animation engine",
"type": "module",
"types": "types.d.ts",
"main": "dist/mraph.umd.js",
"scripts": {
"prepare": "husky install && yarn build",
"precommit": "yarn lint && yarn types && git add .",
"prepublishOnly": "yarn lint && yarn types && yarn build",
"lint": "eslint src plugins --fix",
"types": "tsc",
"site:dev": "astro dev",
"site:build": "astro build",
"build": "vite build",
"build:recorder": "cd plugins/recorder && vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeiyaCooper/Mraph.js.git"
},
"author": "SeiyaCooper",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SeiyaCooper/Mraph.js/issues"
},
"homepage": "https://github.com/SeiyaCooper/Mraph.js#readme",
"devDependencies": {
"@fontsource/poppins": "^5.0.8",
"astro": "^4.3.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.2",
"github-markdown-css": "^5.5.1",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"prettier": "^3.2.5",
"prettier-plugin-glsl": "^0.1.3",
"typescript": "^5.3.3",
"vite": "^5.2.8"
},
"files": [
"dist",
"src",
"types.d.ts"
],
"keywords": [
"webgl",
"graphics",
"graph",
"math"
]
}