-
-
Notifications
You must be signed in to change notification settings - Fork 455
/
package.json
87 lines (87 loc) · 1.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "two.js",
"version": "v0.8.15",
"description": "A renderer agnostic two-dimensional drawing api for the web.",
"module": "build/two.module.js",
"types": "types.d.ts",
"files": [
"package.json",
"LICENSE",
"README.md",
"build",
"extras",
"src",
"types.d.ts"
],
"scripts": {
"build": "node ./utils/build",
"dev": "esbuild --servedir=. --serve=8080",
"docs:generate": "node ./utils/document",
"docs:dev": "vuepress dev wiki",
"docs:build": "vuepress build wiki",
"docs:publish": "./deploy.sh",
"lint": "eslint . --fix",
"types": "tsc --outFile types.d.ts"
},
"directories": {
"docs": "wiki/docs",
"test": "tests",
"example": "wiki/examples"
},
"keywords": [
"svg",
"canvas2d",
"webgl",
"animation",
"rendering",
"scenegraph",
"motiongraphics",
"visualization",
"dom",
"w3c",
"bitmap",
"vector"
],
"homepage": "https://two.js.org/",
"author": {
"name": "jonobr1",
"url": "http://jonobr1.com/"
},
"main": "build/two.js",
"repository": {
"type": "git",
"url": "https://github.com/jonobr1/two.js"
},
"bugs": {
"url": "https://github.com/jonobr1/two.js/issues"
},
"license": "MIT",
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.8.2",
"@vuepress/plugin-nprogress": "^1.5.4",
"babel-eslint": "^10.1.0",
"chalk": "^2.4.2",
"commander": "^2.20.3",
"esbuild": "^0.14.6",
"eslint": "^7.8.1",
"esm": "^3.2.25",
"gzip-size": "^5.1.1",
"jsdoc": "^3.6.6",
"jsdoc-api": "^6.0.0",
"typescript": "^4.5.4",
"vuepress": "^1.9.5",
"vuepress-plugin-sitemap": "^2.3.1"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/jonobr1/two.js.git",
"fileMap": [
{
"basePath": "build",
"files": [
"two*.js"
]
}
]
}
}