-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "@cloudcannon/javascript-api",
"version": "0.0.0",
"type": "module",
"description": "Contains TypeScript declarations for the CloudCannon JavaScript API.",
"author": "CloudCannon <support@cloudcannon.com>",
"license": "MIT",
"keywords": [
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/javascript-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/javascript-api.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/javascript-api/issues",
"email": "support@cloudcannon.com"
},
"scripts": {
"lint": "npm run lint:tsc && npm run lint:format",
"lint:tsc": "tsc --noEmit",
"lint:format": "biome check --fix",
"lint:report": "biome lint --diagnostic-level=error --reporter=junit > lint-results.xml",
"lint:staged": "biome check --diagnostic-level=error --staged --no-errors-on-unmatched",
"prebuild": "rm -rf dist && mkdir -p dist",
"build": "cp src/* dist/.",
"test": "exit 0"
},
"main": "./src/index.d.ts",
"types": "./src/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"src/**/*"
],
"dependencies": {
"@cloudcannon/configuration-types": "0.0.43"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"typescript": "^5.9.2"
}
}