generated from urpflanze-org/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.9 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
{
"name": "@urpflanze/svg-importer",
"version": "0.0.8",
"description": "Urpflanze package",
"license": "GPL-3.0-or-later",
"docs": "https://github.com/urpflanze-org/svg-importer/blob/master/README.md",
"keywords": [
"urpflanze",
"svg",
"typescript"
],
"author": "Gennaro Bosone <[email protected]>",
"homepage": "https://github.com/urpflanze-org/svg-importer",
"repository": {
"type": "git",
"url": "https://github.com/urpflanze-org/svg-importer.git"
},
"bugs": {
"url": "https://github.com/urpflanze-org/svg-importer/issues",
"email": "[email protected]"
},
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/urpflanze"
},
{
"type": "bitcoin",
"url": "https://explorer.btc.com/btc/address/1CSQq4aMmsA71twvyZHZCjmeB2AmQGCPNq"
},
{
"type": "ethereum",
"url": "https://etherscan.io/address/0x9086c4bb7015c1d6dc79162d02e7e1239c982c01"
}
],
"module": "build/esm/urpflanze-svg-importer.js",
"browser": "build/umd/urpflanze-svg-importer.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"build",
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build-browser": "npx webpack --config webpack.config.js",
"build": "tsc --p tsconfig.json && tsc --p tsconfig-esm.json && npm run build-browser",
"test": "tap",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"publishConfig": {},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"simplify-js": "^1.2.4",
"svgdom": "^0.1.8",
"svgpath": "^2.3.1",
"transformation-matrix": "^2.7.0"
},
"devDependencies": {
"@types/tap": "^14.10.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"tap": "^14.11.0",
"typescript": "4.2",
"webpack": "^5.46.0",
"webpack-cli": "^4.8.0"
},
"peerDependencies": {
"@urpflanze/color": "0.0.5",
"@urpflanze/core": "^0.5.9"
}
}