-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "svgstitcher",
"version": "1.1.1",
"license": "CC-BY-NC-SA-4.0",
"author": "https://github.com/stlln",
"repository": {
"type": "git",
"url": "https://github.com/stlln/svgstitcher.git"
},
"main": "dist/node.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md"
],
"scripts": {
"lint": "eslint --cache --cache-location=.tmp src",
"generate-declaration": "tsc --project tsconfig.declaration.json",
"build": "npx webpack",
"dist": "npm run build && cp src/index.d.ts dist/index.d.ts"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"ajv": "^8.6.1",
"loglevel": "^1.8.0",
"svgdom": "^0.1.8",
"svgson": "^5.2.1",
"text-to-svg": "^3.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.0",
"@types/node": "^17.0.41",
"@types/text-to-svg": "^3.1.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"clean-publish": "^4.0.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.16.0",
"iconv-lite": "^0.6.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}