-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.1 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.1 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
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
88
{
"name": "pith",
"version": "4.0.1",
"description": "JavaScript SVG parser and renderer on Canvas.",
"authors": [
{
"name": "Liam Parker",
"email": "liam@spiff.com.au"
},
{
"name": "Joshua Jones",
"email": "josh@spiff.com.au"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/spiffdev/pith"
},
"bugs": {
"url": "https://github.com/spiffdev/pith/issues"
},
"keywords": [
"javascript",
"client",
"browser",
"svg",
"canvas"
],
"engines": {
"node": ">=12.0.0"
},
"sideEffects": false,
"main": "./src/index.ts",
"publishConfig": {
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"directory": "package"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"dev": "vite",
"prepare": "yarn run build"
},
"dependencies": {
"raf": "^3.4.1",
"rgbcolor": "^1.0.1",
"stackblur-canvas": "^2.0.0",
"svg-pathdata": "^6.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-typescript": "^11.1.4",
"@types/node": "^17.0.16",
"@types/node-fetch": "^2.5.12",
"@types/offscreencanvas": "^2019.6.4",
"@types/puppeteer": "^5.4.2",
"@types/raf": "^3.4.0",
"@types/xmldom": "^0.1.29",
"browserslist": "^4.19.1",
"cross-env": "^7.0.0",
"eslint": "^8.50.0",
"eslint-plugin-html": "^7.1.0",
"node-fetch": "^2.6.0",
"puppeteer": "^13.0.0",
"rollup": "^3.29.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"xmldom": "^0.6.0"
},
"readme": "",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}