-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "@datocms/cda-client",
"version": "0.2.10",
"description": "JS client for DatoCMS GraphQL Content Delivery API based on the browser Fetch API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"test": "vitest --run",
"prebuild": "rimraf dist",
"build": "tsc && tsc --project ./tsconfig.esnext.json",
"prepare": "npx simple-git-hooks && npm run test && npm run build",
"format": "biome check --write --unsafe"
},
"keywords": [
"datocms",
"client"
],
"sideEffects": false,
"directories": {
"lib": "dist"
},
"files": [
"dist",
"src",
"!src/__test__"
],
"author": "Stefano Verna <s.verna@datocms.com>",
"homepage": "https://github.com/datocms/cda-client",
"license": "MIT",
"dependencies": {
"@0no-co/graphql.web": "^1.0.11"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"np": "^10.1.0",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.2",
"vitest": "^2.1.7"
},
"simple-git-hooks": {
"pre-commit": "npm run format"
}
}