-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.37 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
54
55
56
57
58
59
60
{
"name": "vivid",
"version": "0.1.0",
"description": "A modern web-based animation library for mathematical visualizations - like Manim but live in the browser",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"playground": "cd apps/playground && npm run dev",
"clean": "turbo run clean",
"publish-core": "cd packages/core && npm publish",
"build-core": "cd packages/core && npm run build",
"lint": "turbo run lint",
"format": "prettier --write .",
"prepare": "husky install"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"prettier": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/markmiller/vivid.git"
},
"homepage": "https://github.com/markmiller/vivid",
"bugs": {
"url": "https://github.com/markmiller/vivid/issues"
},
"keywords": [
"animation",
"mathematics",
"visualization",
"canvas",
"manim",
"math",
"education",
"2d",
"3d",
"graphics",
"typescript",
"ai",
"interactive"
],
"author": "Mark Miller",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}