generated from napolab/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@napolab/alpha-blend",
"version": "2.0.1",
"private": false,
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"package.json",
"README.md",
"README-ja.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "npm-run-all -p lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fmt": "npm-run-all -s fmt:*",
"fmt:eslint": "eslint --fix .",
"fmt:prettier": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest",
"publint": "publint",
"release": "changeset publish"
},
"author": "@naporin0624",
"license": "MIT",
"overrides": {
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@naporin0624/eslint-config": "^0.14.0",
"@tsconfig/esm": "^1.0.5",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/recommended": "^1.0.3",
"@types/color-rgba": "^2.1.2",
"deepmerge": "^4.3.1",
"eslint": "^8.56.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^0.33.0"
},
"dependencies": {
"color-rgba": "^2.4.0",
"rgb-hex": "^4.1.0"
},
"volta": {
"node": "20.11.0",
"npm": "9.7.2"
},
"keywords": [
"alpha-blend",
"color-blending",
"color-utility",
"typescript",
"rgba",
"hex"
],
"repository": {
"type": "git",
"url": "https://github.com/napolab/alpha-blend.git"
},
"bugs": {
"url": "https://github.com/napolab/alpha-blend/issues"
}
}