-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "@yberion/image-utils",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"module": "./index.js",
"main": "./index.cjs",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"scripts": {
"build": "nx build",
"build:watch": "nx build --watch=true",
"start": "node ./dist/index.js",
"start:cjs": "node ./dist/index.cjs",
"test": "nx test",
"lint": "nx lint",
"format": "nx format:write",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install"
},
"private": true,
"engines": {
"node": ">=18.17.0",
"pnpm": "^8.6.10"
},
"dependencies": {
"tslib": "~2.6.2"
},
"devDependencies": {
"@commitlint/cli": "~17.7.1",
"@commitlint/config-conventional": "~17.7.0",
"@commitlint/types": "~17.4.4",
"@nx/esbuild": "16.8.0-beta.2",
"@nx/eslint-plugin": "16.8.0-beta.2",
"@nx/js": "16.8.0-beta.2",
"@nx/linter": "16.8.0-beta.2",
"@nx/vite": "16.8.0-beta.2",
"@nx/workspace": "16.8.0-beta.2",
"@types/node": "20.5.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-v8": "~0.34.2",
"changelogen": "~0.5.5",
"esbuild": "~0.19.2",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-deprecation": "~1.5.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "~8.0.3",
"lint-staged": "~14.0.1",
"nx": "16.8.0-beta.2",
"prettier": "~2.8.8",
"typescript": "~5.2.2",
"vite": "~4.4.9",
"vitest": "~0.34.2"
}
}