-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "iroiro",
"version": "0.2.0",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"iroiro": "bin/iroiro.js",
"iro": "bin/iroiro.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/iroiro.git"
},
"bugs": "https://github.com/antfu/iroiro/issues",
"homepage": "https://github.com/antfu/iroiro#readme",
"files": [
"dist",
"bin",
"colors.json"
],
"scripts": {
"dev": "esno src/cli.ts",
"build": "esno scripts/build.ts && tsup src/cli.ts src/index.ts --format cjs,esm --dts --minify",
"prepare": "npm run build",
"release": "npx bumpp --commit --tag --push && npm publish",
"web": "npm -C web run dev"
},
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.3.3",
"@types/chroma-js": "^2.1.0",
"@types/color-namer": "^1.3.0",
"@types/node": "^14.11.2",
"chroma-js": "^2.1.0",
"color-namer": "^1.4.0",
"eslint": "^7.10.0",
"esno": "^0.2.0",
"tsup": "^3.7.0",
"typescript": "^4.0.3"
}
}