generated from isBatak/typescript-cli-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "ikona",
"version": "0.0.1",
"private": true,
"description": "The repo of ikona, a CLI tool for generating SVG sprites from a directory of SVG files and more.",
"author": "Ivica Batinić <[email protected]",
"keywords": [
"typescript",
"cli",
"SVG sprite",
"illustration",
"assets",
"generator"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "pnpm --parallel --filter=./packages/** dev",
"build-fast": "pnpm -r --parallel --filter=./packages/** build-fast",
"build": "pnpm -r --filter=./packages/** build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prettier": "prettier --check packages",
"prettier-fix": "prettier --write packages",
"typecheck": "tsc --noEmit",
"changeset:version": "changeset version",
"changeset:release": "changeset publish"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.57.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"pkg": "^5.8.1",
"prettier": "3.2.5",
"prettier-2": "npm:prettier@^2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1"
},
"type": "module"
}