-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 978 Bytes
/
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
{
"name": "ts-color-converter",
"version": "1.0.18",
"description": "",
"main": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist/cjs",
"dist/esm",
"dist/types"
],
"type": "module",
"scripts": {
"test": "jest",
"build": "npm run test && rm -r dist && tsc --project tsconfig.esm.json & tsc --project tsconfig.cjs.json && mv dist/cjs/index.js dist/cjs/index.cjs",
"publish-package": "npm run build && npm publish"
},
"keywords": [],
"author": "Med Djelaili",
"repository": "https://github.com/meditto/ts-color-converter",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"dependencies": {
"decimal.js": "^10.4.3"
}
}