-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 KB
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
{
"name": "@hedgehoglab/crayon-cli",
"version": "1.1.5",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"crayon": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"check:types": "tsc -p ./tsconfig.json",
"generate:readme": "jiti ./build/generate-readme/index.ts",
"lint": "pnpm run lint:eslint && pnpm run lint:prettier",
"lint:eslint": "eslint .",
"lint:fix": "pnpm run lint:eslint --fix && pnpm run lint:prettier -w",
"lint:prettier": "prettier -c ./src",
"prepack": "pnpm run build",
"play": "jiti ./src/index.ts",
"release": "bumpp package.json packages/*/package.json --commit --push --tag --all && pnpm publish --access public",
"test": "pnpm lint && vitest run --coverage",
"preversion": "sort-package-json && pnpm check:types && pnpm build",
"version": "pnpm generate:readme"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"c12": "^1.10.0",
"citty": "^0.1.5",
"consola": "^3.2.3",
"pathe": "^1.1.1",
"scule": "^1.0.0"
},
"devDependencies": {
"@hedgehoglab/eslint-config": "^1.1.0",
"@hedgehoglab/prettier-config": "^1.1.0",
"@types/node": "^20.8.10",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"jiti": "^1.21.0",
"prettier": "^3.0.3",
"rollup-plugin-copy": "^3.5.0",
"sort-package-json": "^2.6.0",
"type-fest": "^4.18.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
},
"packageManager": "pnpm@8.0.0"
}