-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2 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
{
"name": "@datocms/content-link",
"version": "0.3.20",
"description": "Lightweight library for DatoCMS visual editing overlays and content links.",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./stega": {
"types": "./dist/stega/index.d.ts",
"import": "./dist/stega/index.js",
"require": "./dist/stega/index.cjs"
}
},
"files": [
"src",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && npm run clean && tsup",
"build:watch": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome check .",
"prepublishOnly": "npm run build && npm run test",
"example": "npm run build && serve ."
},
"keywords": [
"datocms",
"visual-editing",
"stega",
"content-link",
"cms",
"headless-cms",
"preview"
],
"author": {
"name": "Stefano Verna",
"email": "s.verna@datocms.com"
},
"contributors": [
{
"name": "Marcelo Finamor Vieira",
"email": "m.finamor@datocms.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/datocms/content-link.git"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jsdom": "^21.1.0",
"@types/node": "^20.14.10",
"@vercel/stega": "^0.1.2",
"@vitest/coverage-v8": "^1.6.0",
"compute-scroll-into-view": "^3.1.1",
"dotenv": "^16.4.5",
"jsdom": "^24.0.0",
"np": "^10.2.0",
"penpal": "^4.1.1",
"rimraf": "^5.0.5",
"serve": "^14.2.4",
"tsup": "^8.5.1",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
}
}