-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "svg2roughjs",
"version": "3.2.1",
"description": "Leverages Rough.js to convert SVGs to a hand-drawn, sketchy representation",
"author": "Fabian Schwarzkopf",
"contributors": [
"Johannes Rössel"
],
"type": "module",
"main": "dist/svg2roughjs.umd.min.js",
"browser": "dist/svg2roughjs.es.min.js",
"module": "dist/svg2roughjs.es.min.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/fskpf/svg2roughjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fskpf/svg2roughjs.git"
},
"keywords": [
"svg",
"roughjs",
"javascript",
"hand-drawn",
"sketch"
],
"license": "MIT",
"scripts": {
"prepare": "npm run lint && npm run build",
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"clean": "rimraf -g *.tgz && rimraf dist/ && rimraf out-tsc/",
"lint": "eslint ./src",
"tsc": "tsc --noEmit",
"test-all": "npm run clean && tsc && wtr"
},
"files": [
"dist/*",
"LICENSE.md",
"README.md"
],
"dependencies": {
"roughjs": "^4.6.6",
"svg-pathdata": "^6.0.3",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@open-wc/testing": "4.0.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.4.0",
"@types/tinycolor2": "^1.4.6",
"@web/dev-server-rollup": "0.6.4",
"@web/test-runner": "0.18.3",
"eslint": "^9.9.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.1.0"
}
}