-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 2.28 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
{
"name": "candygraph",
"version": "0.10.0",
"description": "Fast by default, flexible 2D plotting library.",
"main": "./dist/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"2d",
"plot",
"graph",
"chart",
"webgl",
"regl"
],
"author": "Rye Terrell <[email protected]> (https://wwwtyro.net)",
"contributors": [
"Fritz Lekschas (https://lekschas.de)"
],
"license": "Unlicense OR MIT",
"scripts": {
"build": "npm run clean && npm run build-library && npm run build-tutorial && npm run build-examples && npm run build-apidocs",
"build-library": "tsc -p tsconfig.json && webpack",
"build-tutorial": "webpack --config docs/tutorial/webpack.config.js",
"build-examples": "webpack --config docs/examples/webpack.config.js",
"start-tutorial": "webpack-dev-server --config docs/tutorial/webpack.config.js",
"start-examples": "webpack-dev-server --config docs/examples/webpack.config.js",
"build-apidocs": "typedoc src/index.ts --readme none --excludeInternal --cleanOutputDir --out docs/api",
"start-apidocs": "typedoc src/index.ts --readme none --excludeInternal --cleanOutputDir --out docs/api --watch",
"serve-apidocs": "http-server docs/api -c-1 -p 8082",
"clean": "rm -rf lib",
"lint": "eslint './src/**/*.ts' './docs/examples/src/**/*.ts' './docs/tutorial/src/**/*.ts'",
"start": "concurrently -k 'npm run watch' 'npm run start-tutorial' 'npm run start-examples' 'npm run start-apidocs' 'npm run serve-apidocs'",
"watch": "webpack --watch"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"regl": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwwtyro/candygraph.git"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"markdown-it": "^13.0.1",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"typedoc": "^0.23.7",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}