-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.53 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.53 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
{
"name": "@prismicio/simulator",
"version": "0.2.3",
"description": "Preview and develop Prismic slices fast with minimal configuration",
"keywords": [
"prismic",
"typescript"
],
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"repository": {
"type": "git",
"url": "ssh://git@github.com/prismicio/slice-simulator.git"
},
"files": [
"./dist",
"./src"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"kit": [
"dist/kit.d.ts"
]
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./kit": {
"import": "./dist/kit.js",
"require": "./dist/kit.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt",
"prepare": "npm run build",
"lint": "oxlint --deny-warnings",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run lint && npm run types && npm run unit && npm run build"
},
"devDependencies": {
"@prismicio/client": "^7.21.3",
"@types/node": "25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"peerDependencies": {
"@prismicio/client": "^7"
},
"engines": {
"node": ">=20"
}
}