-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "canvas-percept",
"version": "1.0.20",
"description": "HTML5 Canvas rendering engine",
"main": "dist/cjs/percept.js",
"types": "dist/cjs/percept.d.ts",
"scripts": {
"test": "jest",
"clean": "npx shx rm -rf dist",
"prebuild": "npm run clean",
"build": "npm run build:umd && npm run build:cjs && npm run build:esm",
"postbuild": "npx rollup --config",
"build:umd": "webpack --config=webpack.prod.js",
"build:cjs": "tsc",
"build:esm": "tsc -m es6 --outDir dist/esm",
"docs": "npx typedoc --plugin typedoc-plugin-extras --favicon static/favicon.ico && npx shx cp static/404.html docs/404.html",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhagatsaurabh/percept.git"
},
"keywords": [
"canvas library",
"html5 canvas engine",
"2d library",
"canvas engine",
"html5 canvas library",
"percept",
"canvas percept",
"canvas-percept",
"canvas rendering library",
"rendering library"
],
"author": "Saurabh Bhagat",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.14.22",
"@types/offscreencanvas": "^2019.6.4",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"rollup": "^2.72.0",
"rollup-plugin-dts": "^4.2.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.1.4",
"ts-loader": "^8.0.14",
"typedoc": "^0.22.15",
"typedoc-plugin-extras": "^2.2.3",
"typescript": "^4.6.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
}
}