-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "path-bool",
"version": "0.0.3",
"license": "MIT",
"author": {
"name": "Adam Platkevič",
"email": "[email protected]"
},
"description": "A low-level library for performing boolean operations on SVG paths.",
"keywords": [
"vector",
"path",
"boolean",
"bool",
"svg"
],
"type": "module",
"main": "./dist/path-bool.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"homepage": "https://r-flash.github.io/PathBool.js/",
"repository": {
"url": "https://github.com/r-flash/PathBool.js",
"type": "git"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@resvg/resvg-js": "^2.6.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"cheerio": "^1.0.0-rc.12",
"glob": "^11.0.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build-dev": "NODE_ENV=development rollup -c",
"watch": "NODE_ENV=development rollup -c -w",
"test": "jest",
"pretty": "prettier --write ./src"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}