-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.02 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
{
"name": "svg-colorizer",
"version": "0.2.1",
"description": "Modify colors in SVG elements for web and server-side applications.",
"scripts": {
"build": "npx tsup --config tsup.config.js",
"build:watch": "npx tsup --config tsup.config.js --watch",
"release": "npm run build && rm -rf ./test",
"test": "npx jest"
},
"keywords": [
"svg",
"colorizer",
"colors",
"fill",
"vector",
"image"
],
"author": "Arman Ghazaryan",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/tinycolor2": "^1.4.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"tinycolor2": "^1.6.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Arman2409/svg-colorizer"
},
"type": "module"
}