-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.3 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
87
88
89
90
91
92
93
94
95
96
{
"name": "strapi-js",
"type": "module",
"version": "2.1.1",
"packageManager": "pnpm@8.15.3",
"description": "A nodejs/browser/edge javascript SDK for Strapi headless CMS; type-safe with typescript.",
"author": "mgh <m.ghoreshi@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/mohammadGh/strapi-js.git",
"repository": {
"type": "git",
"url": "git+https://github.com/mohammadGh/strapi-js.git"
},
"bugs": "https://github.com/mohammadGh/strapi-js/issues",
"keywords": [
"strapi-api",
"strapi-sdk",
"javascript-strapi",
"typescript-strapi"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"cz": "cz",
"commit": "cz",
"release": "release-it"
},
"dependencies": {
"consola": "^3.2.3",
"defu": "^6.1.4",
"ofetch": "^1.4.1",
"qs": "^6.13.1",
"std-env": "^3.8.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@antfu/ni": "^0.23.1",
"@antfu/utils": "^0.7.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.1",
"@types/qs": "^6.9.17",
"@vitest/coverage-v8": "^2.1.8",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"msw": "^2.6.6",
"pnpm": "^9.14.4",
"release-it": "^17.10.0",
"release-it-beautiful-changelog": "^0.1.1",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "^6.0.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,cjs,ts,vue,yml}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}