-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@smartive/utils",
"version": "1.0.0",
"description": "A set of general purpose utilities and helpers for web projects.",
"type": "module",
"source": "./src/index.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./http": {
"types": "./dist/http/index.d.ts",
"import": "./dist/http/index.js"
},
"./datocms": {
"types": "./dist/datocms/index.d.ts",
"import": "./dist/datocms/index.js"
},
"./next": {
"types": "./dist/next/index.d.ts",
"import": "./dist/next/index.js"
}
},
"files": [
"dist/**/*",
"src/**/*",
"!src/**/*.test.ts"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src",
"prettier": "prettier --check src",
"test": "vitest run"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"utils",
"helpers",
"datocms",
"nextjs"
],
"author": "smartive AG",
"license": "MIT",
"repository": {
"url": "git+https://github.com/smartive/utils.git",
"type": "git"
},
"peerDependencies": {
"@datocms/cda-client": "^0.2.10",
"next": "^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"@datocms/cda-client": {
"optional": true
},
"next": {
"optional": true
}
},
"overrides": {
"brace-expansion": "5.0.9",
"postcss": "8.5.25",
"sharp": "0.35.3"
},
"devDependencies": {
"@datocms/cda-client": "0.2.10",
"@smartive/eslint-config": "7.0.1",
"@smartive/prettier-config": "3.1.2",
"@types/node": "24.13.3",
"eslint": "9.39.5",
"eslint-import-resolver-typescript": "4.4.5",
"next": "16.2.12",
"prettier": "3.9.6",
"react": "19.2.8",
"react-dom": "19.2.8",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}